-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 916 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 916 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "did"
version = "0.1.0"
description = "A Python port of the VH-Lab/DID-matlab project"
readme = "README.md"
authors = [
{ name = "Author", email = "vanhoosr@brandeis.edu" },
]
dependencies = [
"numpy",
"pandas",
"portalocker",
"networkx",
"matplotlib",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"pytest",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"symmetry: cross-language symmetry tests (MATLAB <-> Python)",
"make_artifacts: tests that generate artifacts for symmetry testing",
"read_artifacts: tests that read and validate artifacts from another implementation",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"