forked from g2p/blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (40 loc) · 1.39 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3.3
from setuptools import setup
setup(
name='blocks',
version='0.1.4',
author='Gabriel de Perthuis',
author_email='[email protected]',
url='https://github.com/g2p/blocks',
license='GNU GPL',
keywords='bcache lvm storage partitioning ssd',
description='Conversion tools for block devices',
entry_points={
'console_scripts': [
'blocks = blocks.__main__:script_main']},
packages=[
'blocks',
],
include_package_data=True,
# See requirements.txt for installable versions
install_requires=[
'maintboot',
'python-augeas >= 0.4.2a0',
'pyparted > 3.10a0'],
classifiers='''
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
License :: OSI Approved :: GNU General Public License (GPL)
Operating System :: POSIX :: Linux
Intended Audience :: System Administrators
Intended Audience :: End Users/Desktop
Topic :: System :: Filesystems
Topic :: Utilities
Environment :: Console
'''.strip().splitlines(),
long_description='''
Conversion tools for block devices.
Convert between raw partitions, logical volumes, and bcache
devices witout moving data.
See `github.com/g2p/blocks <https://github.com/g2p/blocks#readme>`_
for installation and usage instructions.''')