-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (26 loc) · 913 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
from setuptools import setup
install_requires = list(val.strip() for val in open('requirements.txt'))
tests_require = list(val.strip() for val in open('test_requirements.txt'))
setup(name='pyebox',
version='1.1.4',
description='Get your EBox consumption (wwww.ebox.ca)',
author='Thibault Cohen',
author_email='[email protected]',
url='http://github.com/titilambert/pyebox',
package_data={'': ['LICENSE.txt']},
include_package_data=True,
packages=['pyebox'],
entry_points={
'console_scripts': [
'pyebox = pyebox.__main__:main'
]
},
license='Apache 2.0',
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)