-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
78 lines (68 loc) · 2.16 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
68
69
70
71
72
73
74
75
76
77
78
"""Setup the package."""
import os
from setuptools import find_packages, setup
on_rtd = os.environ.get("READTHEDOCS") == "True"
install_requires = [
"pandas==1.3.5",
"pandas-profiling==3.1.0",
"dataclasses-json==0.5.7",
"great_expectations==0.15.2",
"jinja2==3.0.3",
"jsonschema==4.18.0",
"networkx",
"ruamel.yaml==0.17.17",
"numpy==1.22.0",
"docopt==0.6.2",
"plotly-express==0.4.1",
"tqdm==4.64.0",
"kaleido==0.2.1",
]
if not on_rtd:
install_requires.append("networkit==9.1.1")
setup_requires = ["pytest-runner"]
tests_require = ["pytest", "pytest-cov"]
extras_require = {
"tests": tests_require,
"docs": [
"sphinx",
"sphinx-rtd-theme",
"sphinx-click",
"sphinx-autodoc-typehints",
"sphinx_automodapi",
"nbsphinx_link",
"jupyter-sphinx",
"sphinxcontrib-pseudocode",
],
}
keywords = [
"ontology",
"alignment",
]
setup(
name="onto_merger",
packages=find_packages(where="onto_merger"),
package_dir={"": "onto_merger"},
version="0.1.0",
license="Apache License, Version 2.0",
description="OntoMerger is an ontology alignment library for deduplicating knowledge graph nodes,(i.e. ontology "
+ "concepts) that represent the *same domain*, e.g. diseases, and **connecting** them to form a "
+ "single directed acyclic hierarchical graph (DAG) (i.e. an ontology class hierarchy).",
author="David Geleta",
author_email="[email protected]",
url="https://github.com/AstraZeneca/onto_merger",
download_url="https://github.com/AstraZeneca/onto_merger/archive/v0.1.0.tar.gz",
keywords=keywords,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
extras_require=extras_require,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)