-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.36 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 1.36 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
# 'prettytable'
# 'rich',
# 'pyreadr',
# 'prettytable',
# 'pandas',
# 'numpy',
# 'pytabix'
]
tests_require = [
# 'nose',
# 'mock'
]
extras_require = {
'docs': []
}
setup(name='du2html',
version='0.0.6',
url='https://github.com/danielmsk/du2html',
license='MIT',
author='Daniel Minseok Kwon',
author_email='daniel.minseok.kwon@gmail.com',
description='',
download_url='',
keywords=['linux', 'disk usage'],
classifiers=[
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
# packages=find_packages(exclude=['tests']),
packages=find_packages('src'),
package_dir={'': 'src'},
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
zip_safe=False,
install_requires=install_requires,
setup_requires=['nose>=1.0'],
test_suite='nose.collector',
package_data={
'du2html': ['templates/*'],
},
entry_points={
'console_scripts': [
'du2html=du2html:cli',
]
})