-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 998 Bytes
/
Copy pathpyproject.toml
File metadata and controls
52 lines (44 loc) · 998 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "citationnet"
version = "2.1.0"
authors = [
{ name="Malte Vogl", email="vogl@gea.mpg.de"}
]
description = "Create a scientific network visualization."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"tqdm",
"requests",
"pandas",
"uvicorn",
"fastapi",
"jinja2",
"python-multipart",
"httpx"
]
[project.urls]
"Project Homepage" = "https://modelsen.gea.mpg.de"
"Homepage" = "https://gitlab.gwdg.de/mpigea/dt/citationnet"
"Issues" = "https://gitlab.gwdg.de/mpigea/dt/citationnet/-/issues"
[project.optional-dependencies]
dev = [
"tox",
"twine",
"sphinx",
"ruff",
"myst-parser"
]
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff]
line-length = 120
ignore = ["S101", "S311", "TD003", "ANN101", "N802", "N803", "N806"]