forked from maltevogl/citationnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "citationnet"
version = "1.0.1"
authors = [
{name="Malte Vogl", email="[email protected]"},
{name="Robert Egel", email="[email protected]"}
]
description = "Visualize citation and reference networks in 3D."
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"flask[async]",
"requests",
"semanticlayertools >=0.1.5",
"dimcli"
]
[project.urls]
"Project Home" = "https://modelsen.mpiwg-berlin.mpg.de"
"Homepage" = "https://gitlab.gwdg.de/modelsen/citationnet"
"Issues" = "https://gitlab.gwdg.de/modelsen/citationnet/-/issues"
[project.optional-dependencies]
test = [
"tox",
"pytest",
"pytest-cov"
]
docs = [
"sphinx_rtd_theme",
"m2r2",
"sphinx",
"sphinx-autoapi"
]
dev = ["twine"]
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff]
line-length = 120
ignore = ["S101", "S311", "TD003", "ANN101", "N802", "N803", "N806"]