-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (67 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
71 lines (67 loc) · 1.48 KB
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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "ista"
version = "0.2.1"
description = "A Python/C++ toolkit for building and manipulating knowledge graphs."
readme = "README.md"
requires-python = ">=3.7"
authors = [
{name = "Joseph D. Romano"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: C++",
]
dependencies = [
"openpyxl",
"pandas",
"tqdm",
"pybind11>=2.6.0",
"neo4j",
"networkx",
"numpy",
]
[project.urls]
Homepage = "https://github.com/JDRomano2/ista"
[project.scripts]
ista = "ista.ista:main"
ista_populate = "ista.populate:main"
owl2memgraph = "ista.owl2memgraph:main"
[project.optional-dependencies]
mysql = [
"mysqlclient",
]
test = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-timeout>=2.1",
]
docs = [
"sphinx>=5.0",
"sphinx-rtd-theme>=1.0",
"breathe>=4.35",
"numpydoc>=1.5",
"myst-parser>=1.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"pytest-timeout>=2.1",
"sphinx>=5.0",
"sphinx-rtd-theme>=1.0",
"breathe>=4.35",
"numpydoc>=1.5",
"myst-parser>=1.0",
]