forked from EverythingMe/ncdu-s3
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·30 lines (26 loc) · 846 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 setuptools import setup, find_packages
setup(
name='ncdu-s3',
version='0.3',
description='Generate ncdu data files for S3 buckets',
author='EverythingMe',
author_email='[email protected]',
url='http://github.com/EverythingMe/ncdu-s3',
packages=find_packages(),
install_requires=['boto3', 'click', 'ujson'],
entry_points={
'console_scripts': [
'ncdu-s3 = ncdu_s3.main:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
]
)