forked from biolink/kgx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.45 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
from setuptools import setup, find_packages
NAME = 'kgx'
DESCRIPTION = 'A Python library and set of command line utilities for exchanging Knowledge Graphs (KGs) that conform to or are aligned to the Biolink Model.'
URL = 'https://github.com/NCATS-Tangerine/kgx'
AUTHOR = 'Deepak Unni, Sierra Moxon, Richard Bruskiewich'
REQUIRES_PYTHON = '>=3.7.0'
VERSION = '1.5.4'
LICENSE = 'BSD'
with open("requirements.txt", "r") as FH:
REQUIREMENTS = FH.readlines()
EXTRAS = {}
setup(
name=NAME,
author=AUTHOR,
version=VERSION,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
description=DESCRIPTION,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license=LICENSE,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={'kgx': ["config.yml"]},
keywords='knowledge-graph Neo4j RDF NCATS NCATS-Translator Biolink-Model',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
],
install_requires=[r for r in REQUIREMENTS if not r.startswith("#")],
extras_require=EXTRAS,
include_package_data=True,
entry_points={
'console_scripts': ['kgx=kgx.cli:cli']
}
)