-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (36 loc) · 1.38 KB
/
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>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-gcode-metadata"
version = "0.2.0"
description = "Python library for extraction of metadata from g-code files"
readme = {file = "README.md", content-type="text/markdown"}
license = {text = "LGPLv2+"}
authors = [
{name = "Prusa Connect Developers", email = "[email protected]"},
]
maintainers = [
{name = "Ondřej Tůma", email = "[email protected]"},
{name = "Michal Zoubek", email = "[email protected]"},
{name = "Tomáš Jozífek", email = "[email protected]"},
{name = "Šárka Faloutová", email = "[email protected]"},
{name = "Martin Užák", email = "[email protected]"},
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
"Homepage" = "https://github.com/prusa3d/gcode-metadata"
"Bug Tracker" = "https://github.com/prusa3d/gcode-metadata/issues"
[tool.setuptools]
packages = ["gcode_metadata"]
[tool.setuptools.package-data]
"gcode_metadata" = ["py.typed"]