-
Notifications
You must be signed in to change notification settings - Fork 997
/
pyproject.toml
41 lines (39 loc) · 1.32 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
[build-system]
requires = ["setuptools", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "Printrun"
description = "Host software for 3D printers"
authors = [
{name = "Kliment Yanev"},
{name = "Guillaume Seguin"},
]
readme = "README.md"
requires-python=">=3.8"
classifiers=[
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"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",
"Topic :: Printing",
]
dynamic = [ # these variables are dynamically set at `setup.py`
"version",
"scripts",
"dependencies",
]
[project.urls]
Homepage = "https://github.com/kliment/Printrun/"
Issues = "https://github.com/kliment/Printrun/issues"
Changelog = "https://github.com/kliment/Printrun/blob/master/NEWS.md"