-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (29 loc) · 921 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
31
from setuptools import setup, find_packages
version = '1.6'
setup(name='bhr-client',
version=version,
description="BHR Client",
long_description="Client for the BHR Blackhole Router site",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='bhr',
author='Justin Azoff',
author_email='JAzoff@illinois.edu',
url='https://github.com/ncsa/bhr-client',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
"requests>=2.0",
"arrow==0.10.0",
],
extras_require={
'cli': ['Click'],
},
entry_points={
'console_scripts': [
'bhr-client = bhr_client.cli:main',
'bhr-client-run-stdout = bhr_client.run:main',
]
}
)