-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (45 loc) · 1.4 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="dict2graph",
description="Class to extract, transform and load (ETL) dicts/json to a Neo4j graph",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Documentation": "https://dzd-ev.github.io/dict2graph-docs/",
"Source": "https://github.com/DZD-eV-Diabetes-Research/dict2graph",
"Tracker": "https://github.com/DZD-eV-Diabetes-Research/dict2graph/issues",
},
url="https://dzd-ev.github.io/dict2graph-docs/",
author="Tim Bleimehl",
author_email="tim.bleimehl@helmholtz-munich.de",
license="MIT",
packages=["dict2graph"],
install_requires=[
"py2neo",
"neo4j",
"graphio",
],
extras_require={
"tests": ["pytest", "deepdiff"],
"docs": [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-autorefs",
"mkdocs-material",
],
},
python_requires=">=3.9",
zip_safe=False,
include_package_data=True,
use_scm_version={
"root": ".",
"relative_to": __file__,
# "local_scheme": "node-and-timestamp"
"local_scheme": "no-local-version",
"write_to": "version.py",
},
setup_requires=["setuptools_scm"],
)