-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 943 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
[project]
name = "package_name"
version = "0.9.1"
description = "A python package."
authors = [
{name = "Your Name",email = "you@example.com"}
]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"jupyter (>=1.1.1,<2.0.0)",
"ipywidgets (>=8.1.7,<9.0.0)",
"plotly (>=6.3.0,<7.0.0)",
"numpy (>=2.3.3,<3.0.0)",
"matplotlib (>=3.10.6,<4.0.0)",
"nbmake>=1.5.5",
]
[dependency-groups]
dev = [
"pytest>=8.4.2,<10.0.0",
"ruff (>=0.13.1,<0.15.0)",
"pre-commit (>=4.3.0,<5.0.0)",
"pyright (>=1.1.406,<2.0.0)",
"pytest-cov (>=7.0.0,<8.0.0)"
]
docs = [
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material"
]
[tool.coverage.run]
source = ["src/package_name"]
omit = [
"tests/*",
"conftest.py"
]
[build-system]
requires = ["uv-build>=0.1,<1.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "package_name"
module-root = "src"