-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
45 lines (38 loc) · 1.02 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
"wheel",
"setuptools-git-versioning<2"
]
build-backend = "setuptools.build_meta"
[project]
name = "cq-cam"
authors = [
{name = "Matti Eiden", email = "[email protected]"},
]
description = "Cadquery CAM"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["data", "mapping"]
license = {text = "Apache License 2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dynamic = ["version"]
[project.urls]
"Bug Tracker" = "https://github.com/voneiden/cq-cam/issues/"
"Documentation" = "https://github.com/voneiden/cq-cam/"
"Source Code" = "https://github.com/voneiden/cq-cam/"
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}.post{ccount}"
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
[tool.flake8]
max-line-length = 100
[tool.isort]
profile = "black"