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
|
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "svg.path"
version = "7.0"
description = "SVG path objects and parser"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Multimedia :: Graphics",
]
keywords = ["svg", "path", "maths"]
authors = [{name = "Lennart Regebro", email = "regebro@gmail.com"}]
license = {text = "MIT"}
urls = {Homepage = "https://github.com/regebro/svg.path"}
dynamic = ["readme"]
requires-python = ">=3.8"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"Pillow",
"black",
"flake8",
"pyroma",
"check-manifest",
"mypy",
"zest.releaser[recommended]",
]
[tool.setuptools]
zip-safe = true
include-package-data = true
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "CONTRIBUTORS.txt", "CHANGES.txt"]}
[tool.distutils.bdist_wheel]
universal = 1
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
files = ["src", "tests"]
strict = true
|