-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
152 lines (129 loc) · 4.04 KB
/
pyproject.toml
File metadata and controls
152 lines (129 loc) · 4.04 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
[build-system]
requires = ["setuptools>=66.0"]
build-backend = "setuptools.build_meta"
# ============================================================================
# project info
# ============================================================================
[project]
name = "compas_occ"
description = "COMPAS wrapper for the Python bindings of OCC."
keywords = ["compas", "nurbs", "brep", "occ"]
authors = [
{ name = "tom van mele", email = "tom.v.mele@gmail.com" },
{ name = "Lotte Aldinger", email = "aldinger@arch.ethz.ch" },
{ name = "Chen Kasirer", email = "kasirer@arch.ethz.ch" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["compas"]
[project.optional-dependencies]
dev = [
"build",
"bump-my-version",
"compas_invocations2",
"invoke >=0.14",
"pytest",
"ruff",
"twine",
"wheel",
]
docs = [
"markdown-callouts >=0.4",
"markdown-exec >=1.8",
"mike",
"mkdocs >=1.6",
"mkdocs-autorefs >=1.4",
"mkdocs-coverage >=1.0",
"mkdocs-git-revision-date-localized-plugin >=1.2",
"mkdocs-llmstxt >=0.2",
"mkdocs-material >=9.5",
"mkdocs-minify-plugin >=0.8",
"mkdocs-redirects >=1.2",
"mkdocs-section-index >=0.3",
"mkdocstrings[python]",
"pydantic >=2.10",
"tomli >=2.0; python_version < '3.11'",
]
viz = ["compas_viewer"]
[project.urls]
Homepage = "https://compas-dev.github.io/compas_occ"
Repository = "https://github.com/compas-dev/compas_occ"
# ============================================================================
# setuptools config
# ============================================================================
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "compas_occ.__version__" }
dependencies = { file = "requirements.txt" }
optional-dependencies = { dev = { file = "requirements-dev.txt" } }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
# ============================================================================
# replace pytest.ini
# ============================================================================
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests", "src/compas_occ"]
python_files = ["test_*.py", "*_test.py", "test.py"]
addopts = ["-ra", "--strict-markers", "--doctest-glob=*.rst", "--tb=short"]
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
"ALLOW_UNICODE",
"ALLOW_BYTES",
"NUMBER",
]
# ============================================================================
# replace bumpversion.cfg
# ============================================================================
[tool.bumpversion]
current_version = "1.5.0"
message = "Bump version to {new_version}"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "src/compas_occ/__init__.py"
search = "{current_version}"
replace = "{new_version}"
[[tool.bumpversion.files]]
filename = "CHANGELOG.md"
search = "Unreleased"
replace = "[{new_version}] {now:%Y-%m-%d}"
# ============================================================================
# replace setup.cfg
# ============================================================================
[tool.ruff]
line-length = 179
indent-width = 4
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["I001"]
"tests/*" = ["I001"]
"tasks.py" = ["I001"]
[tool.ruff.lint.isort]
force-single-line = true
known-first-party = ["compas", "compas_occ"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.pycodestyle]
max-doc-length = 179
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = "dynamic"