-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (43 loc) · 1.07 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.1.0-dev'
setup(
name='labler',
version=version,
description="Co-Operative Labler",
long_description="""Co-Operative labling of training data.""",
classifiers=[],
author='Service Team @ TNC',
author_email='contact@thenetcircle.com',
url='/~https://github.com/thenetcircle/coop-labler',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'labler = labler.cli:entrypoint',
],
},
install_requires=[
'codecov',
'coverage',
'Flask',
'Flask-RESTful',
'flask-sqlalchemy',
'Flask-Testing',
'gitpython',
'gnenv',
'greenlet',
'gunicorn',
'nose',
'nose-parameterized',
'numpy',
'python-dateutil',
'PyYAML',
'scipy',
'sqlalchemy',
'statsd',
'typing',
'yapsy',
])