-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (56 loc) · 1.78 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "bf3dp-fab"
authors = [
{ name = "Anton Tetov Johansson", email = "[email protected]" }
]
description = "Design and fabrication package for BF3DP"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["geometry"]
license = { text = "MIT license" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: IronPython",
]
dynamic = ["version"]
dependencies = ["compas_rrc", "compas_fab"]
[project.urls]
Homepage = "https://github.com/biodigitalmatter/bf3dp_fab"
Repository = "https://github.com/biodigitalmatter/bf3dp_fab"
Issues = "https://github.com/biodigitalmatter/bf3dp_fab/issues"
[project.optional-dependencies]
dev = ["black", "ruff", "mypy<0.980", "pre-commit", "pytest"]
[tool.setuptools_scm]
write_to = "src/bf3dp_fab/_version.py"
[tool.black]
target-version = ['py39']
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[tool.mypy]
python_version = "2.7"
show_error_codes = true
[[tool.mypy.overrides]]
module = ["Rhino.*"]
ignore_missing_imports = true
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_type = "pep440"
version_provider = "scm"
update_changelog_on_bump = true
major_version_zero = true