forked from knorrie/python-btrfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1004 Bytes
/
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
from distutils.core import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='btrfs',
packages=['btrfs'],
version='8',
description='Python module to inspect btrfs filesystems',
long_description=long_description,
author='Hans van Kranenburg',
author_email='[email protected]',
url='https://github.com/knorrie/python-btrfs',
download_url='https://github.com/knorrie/python-btrfs/tarball/v8',
keywords=['btrfs', 'filesystem'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Filesystems',
'Topic :: System :: Systems Administration',
],
)