forked from lawlesst/vivo-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 650 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name='VIVO utils',
version='0.1',
packages=['vivo_utils',],
description='Tools for ingesting and managing VIVO data.',
long_description=open('README.md').read(),
author='Ted Lawless',
author_email='tlawless@brown.edu',
install_requires=['requests', 'rdflib', 'SPARQLWrapper'],
dependency_links = ['https://github.com/RDFLib/rdflib-sparql/tarball/master#egg=rdflib-sparql-0.2-dev'],
entry_points={
'console_scripts': [
'generateListView = vivo_utils.generate_listview:main',
'vivoWebClient = vivo_utils.web_client:main'
]
}
)