forked from biolink/kgx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (61 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import setup, find_packages
NAME = 'Knowledge Graph Exchange'
DESCRIPTION = 'Knowledge Graph Exchange tools for BioLink model-compliant graphs.'
URL = 'https://github.com/NCATS-Tangerine/kgx'
AUTHOR = 'Deepak Unni'
EMAIL = '[email protected]'
REQUIRES_PYTHON = '>=3.6.0'
VERSION = '0.0.1'
LICENSE = 'BSD'
REQUIRED = [
"prefixcommons>=0.1.4",
"pip>=9.0.1",
"networkx>=2.2",
"SPARQLWrapper>=1.8.2",
"pandas>=0.24.2",
"pytest>=0.0",
"mypy>=0.0",
"pystache>=0.0",
"rdflib>=0.0",
"Click>=7.0",
"neo4j>=1.7.4",
"neo4jrestclient>=0.0",
"pyyaml>=0.0",
#"BiolinkMG>=0.0",
"biolinkml>=0.0",
"bmt>=0.1.0",
"prologterms>=0.0.5",
"shexjsg>=0.6.5",
"terminaltables>=3.1.0",
"stringcase>=1.2.0",
"validators>=0.13.0"
]
EXTRAS = {}
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
description=DESCRIPTION,
long_description=open('README.md').read(),
license=LICENSE,
packages=find_packages(),
keywords='knowledge-graph Neo4j RDF NCATS NCATS-Translator',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bioinformatics',
'Topic :: Scientific/Engineering :: Knowledge Graphs',
'Topic :: Scientific/Engineering :: Translational Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
],
install_requires=REQUIRED,
extras_require=EXTRAS,
entry_points="""
[console_scripts]
kgx=translator_kgx:cli
""",
scripts=['bin/translator_kgx.py']
)