forked from SciCrunch/scibot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1002 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 1002 Bytes
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
from setuptools import setup
with open('README.md', 'rt') as f:
long_description = f.read()
setup(name='scibot',
version='0.0.2',
description='curation workflow automation and coordination',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/SciCrunch/scibot',
author='Tom Gillespie',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[],
keywords='rrid curation biocuration hypothesis hypothes.is web annotation',
packages=['scibot'],
install_requires=[
'curio',
'docopt',
'flask',
'gevent',
'gunicorn',
'hyputils',
'lxml',
'pyontutils>=0.0.5',
],
extras_require={},
scripts=['bin/scibot-bookmarklet', 'bin/scibot-dashboard'],
entry_points={
'console_scripts': [
'scibot-sync=scibot.sync:main'
],
},
)