-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
52 lines (43 loc) · 1017 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 = ["setuptools>=80", "setuptools-scm[simple]>=8"]
[project]
name = "hallmark"
dynamic = ["version"]
license = "Apache-2.0"
description = "Reproducibility is the hallmark of the scientific method"
requires-python = ">=3.9"
dependencies =[
"click",
"GitPython",
"numpy",
"pandas",
"parse",
"pyyaml",
"requests",
"tqdm",
]
authors = [
{name = "Chi-kwan Chan"},
{name = "Nayera Abdessalam"},
{name = "Hayden Marchinek"},
{name = "Rohin Sant"},
{name = "Ram Adithya"},
{name = "Hayden Foote"},
]
[project.scripts]
hallmark = "hallmark.cli:hallmark"
[project.urls]
Homepage = "https://l6a.github.io/hallmark"
Repository = "https://github.com/l6a/hallmark"
Issues = "https://github.com/l6a/hallmark/issues"
[dependency-groups]
dev = ["pytest"]
doc = ["sphinx"]
lint = ["ruff"]
[tool.setuptools.packages.find]
where = ["mod"]
[tool.ruff.lint]
select = ["E", "F"]
exclude = ["doc", "demo"]
[tool.pytest.ini_options]
testpaths = ["test"]