-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (45 loc) · 1.33 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
"""Setup script for Hydrus."""
from setuptools import setup, find_packages
setup(name='hydrus',
include_package_data=True,
version='0.0.1',
description='A space-based application for W3C HYDRA Draft',
author='W3C HYDRA development group',
author_email='[email protected]',
url='https://github.com/HTTP-APIs/hydrus',
py_modules=['cli'],
python_requires='>=3',
install_requires=[
'MarkupSafe==1.0',
'SQLAlchemy==1.1.10',
'Werkzeug==0.12.2',
'aniso8601==1.2.1',
'appdirs==1.4.3',
'argparse==1.2.1',
'click==6.7',
'itsdangerous==0.24',
'lifter==0.4.1',
'packaging==16.8',
'persisting-theory==0.2.1',
'psycopg2',
'pyparsing==2.2.0',
'python-dateutil==2.6.0',
'pytz==2017.2',
'six==1.10.0',
'thespian==3.5.2',
'blinker==1.4',
'typing==3.6.4',
'mypy',
'Click',
'gevent==1.2.2',
'falcon'
],
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'hydrus.egg-info']),
package_dir={'hydrus':
'hydrus'},
entry_points='''
[console_scripts]
hydrus=cli:startserver
'''
)