-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (50 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
66 lines (50 loc) · 1.59 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
[build-system]
requires = [ "scikit-build-core", "pybind11[global]",]
build-backend = "scikit_build_core.build"
[project]
name = "crispy"
version = "0.2.1"
description = "A Python library for converting raster graphics to vector ones"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent", "License :: OSI Approved :: MIT License",]
dependencies = [ "breathe>=4.35.0", "sphinx-rtd-theme>=3.0.2",]
[[project.maintainers]]
name = "Paweł Wysocki"
email = "pawel.wysocki3.stud@pw.edu.pl"
[[project.maintainers]]
name = "Maksymilian Nowak"
email = "maksymilian.nowak2.stud@pw.edu.pl"
[[project.maintainers]]
name = "Piotr Jabłoński"
email = "piotr.jablonski10.stud@pw.edu.pl"
[dependency-groups]
dev = [ "pre-commit>=3.5.0", "pytest>=8.3.5", "ruff>=0.11.3", "toml>=0.10.2",]
[project.license]
text = "MIT"
[project.optional-dependencies]
cli = [ "typer>=0.15.2",]
web = [ "fastapi[standard]>=0.115.12", "uvicorn>=0.33.0",]
[project.scripts]
crispy = "crispy.cli:crispy"
crispy-web = "crispy.webapp:main"
[tool.mypy]
disallow_untyped_decorators = false
[tool.scikit-build.cmake]
version = ">=3.9"
[tool.scikit-build.build]
verbose = true
[tool.scikit-build.sdist]
exclude = [ "tests/**", "docs/**", "utils/**",]
[tool.scikit-build.wheel]
exclude = [ "tests/**", "docs/**", "utils/**",]
[tool.pytest.ini_options]
testpaths = [ "tests/crispy",]
[tool.setuptools.package-dir]
"" = "src/crispy"
[tool.setuptools.package-data]
crispy = [ "*",]
[tool.scikit-build.cmake.define]
BUILD_PYTHON = "ON"
BUILD_TESTING = "OFF"
BUILD_DOCS = "OFF"