-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.19 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
version="0.5.2",
name="btrfsmaint",
description='BTRFS Filesystem Maintenace Scripts.',
long_description=readme(),
url='https://github.com/joshland/btrfsmaint',
author='Joshua M. Schmidlkofer',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'Topic :: System :: Filesystems',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
"click",
],
keywords='btrfs maintenance administration',
packages=['btrfsmaint'],
platforms=['any'],
entry_points={
'console_scripts': [
'btrfsmaint=btrfsmaint:Main',
],
},
)