-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathsetup.py
30 lines (27 loc) · 1015 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
30
from setuptools import setup, find_packages
import install_bashhub
from bashhub.version import __version__ as version
exec (open('bashhub/version.py').read())
tests_require = ['pytest>=3.3.1']
setup(name='bashhub',
version=version,
description='Bashhub.com python client',
url='https://github.com/rcaloras/bashhub-client',
author='Ryan Caloras',
author_email='[email protected]',
license='Apache',
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests==2.23.0', 'jsonpickle==3.0.1', 'click==6.7',
'npyscreen==4.10.5', 'python-dateutil==2.8.1',
'pymongo==3.10.1', 'inflection==0.3.1', 'humanize==1.0.0',
'future==0.18.3', 'mock==3.0.5'
],
tests_require=tests_require,
extras_require={'test': tests_require},
entry_points={
'console_scripts': ['bh=bashhub.bh:main',
'bashhub=bashhub.bashhub:main']
},
zip_safe=False)