-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (55 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
59 lines (55 loc) · 1.77 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
[build-system]
requires = ["uv_build>=0.8.22,<=0.9.20"]
build-backend = "uv_build"
[project]
name = "openscad_parser"
version = "2.1.0"
description = "A PEG parser to read OpenSCAD language source code, with optional AST tree generation."
readme = "README.rst"
authors = [
{ name="Revar Desmera", email="revarbat@gmail.com" },
]
maintainers = [
{ name="Revar Desmera", email="revarbat@gmail.com" },
]
license = "MIT"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["openscad", "openscad parser", "parser"]
dependencies = [
"arpeggio>=2.0.3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
]
yaml = [
"PyYAML>=6.0",
]
[project.urls]
"Homepage" = "https://github.com/belfryscad/openscad_parser"
"Repository" = "https://github.com/belfryscad/openscad_parser"
"Bug Tracker" = "https://github.com/belfryscad/openscad_parser/issues"
"Releases" = "https://github.com/belfryscad/openscad_parser/releases"
"Usage" = "https://github.com/belfryscad/openscad_parser/README.rst"
"Documentation" = "https://github.com/belfryscad/openscad_parser/WRITING_DOCS.md"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v"