-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 1.51 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
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file.
with open(os.path.join(HERE, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="knowledge-graph-similarity",
author="Blue Brain Project, EPFL",
use_scm_version={
"relative_to": __file__,
"write_to": "similarity_tools/version.py",
"write_to_template": "__version__ = '{version}'\n",
},
description="Tools for performing registration of data for similarity-based inference.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="ontology knowledge graph data science",
packages=find_packages(),
python_requires=">=3.7",
include_package_data=True,
setup_requires=[
"setuptools_scm",
],
install_requires=[
f"knowledge-graph-inference",
"bluegraph@git+https://github.com/BlueBrain/BlueGraph",
"neurom",
"tmd"
],
extras_require={
"dev": [
"pytest==7.2.1",
"pytest-cov==4.1.0",
"pytest-bdd",
"pytest-mock==3.3.1",
"codecov",
"flake8"
]
},
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English",
]
)