-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1021 Bytes
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1021 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
53
54
[project]
name = "python_toolkit"
readme = "README.md"
dynamic = ["version", "description"]
authors = [
{ name = "BHoM", email = "bhombot@burohappold.com" }
]
dependencies = [
"case-converter",
"jupyterlab",
"matplotlib",
"numpy",
"pandas",
"plotly",
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"pytest-order",
"virtualenv",
"darkdetect"
]
[urls]
source = "https://github.com/BHoM/Python_Toolkit"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"black",
"ipykernel>=6.29.5",
"pylint>=3.3.5",
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"pytest-order",
"sphinx>=8.1.3",
"sphinx-bootstrap-theme>=0.8.1",
"sphinxcontrib-fulltoc>=1.2.0",
"sphinxcontrib-napoleon>=0.7",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests"]
[tool.setuptools.package-data]
"*" = ["*.mplstyle"]
[tool.pytest.ini_options]
pythonpath = "src"