-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
53 lines (47 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
53
[project]
name = "b3dkit"
version = "0.1.1"
authors = [
{ name="x0pherl"},
]
description = "build123d libraries and utilities"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"build123d>=0.0.1",
"ocp_vscode",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
maintain =[
"twine",
"hatch-vcs",
"hatchling",
"build",
]
docs = [
"mkdocs",
"mkdocs-material",
"markdown-include",
]
[project.urls]
Homepage = "https://github.com/x0pherl/b3dkit"
Issues = "https://github.com/x0pherl/b3dkit/issues"
Documentation = "https://b3dkit.readthedocs.org"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [".venv-1"]
[tool.pytest.ini_options]
markers = [
"manual: marks tests that can only be executed manually",
]