-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
42 lines (37 loc) · 930 Bytes
/
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "beziers"
dynamic = ["version"]
description = "Bezier curve manipulation library"
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name = "Simon Cozens", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
]
dependencies = [
"pyclipper",
]
[project.optional-dependencies]
test = [
"black == 24.4.2",
"pytest",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/beziers/_version.py"
git_describe_command = "git describe --match 'v*' --tags"
[tool.black]
target-version = ["py310"]
extend-exclude = '''
_version.py
'''