forked from florianfesti/boxes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 1.26 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
[build-system]
requires = ["setuptools >= 63.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["dependencies", "optional-dependencies"]
name = 'boxes'
version = '1.0'
requires-python = '>=3.8'
description = 'Boxes generator for laser cutters'
maintainers = [ { name = 'Florian Festi', email='[email protected]' } ]
readme = "README.rst"
keywords = ["boxes", "box", "generator", "svg", "laser cutter"]
classifiers = [ # https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"Topic :: Scientific/Engineering",
]
[tool.setuptools.dynamic]
dependencies = {file=["requirements.txt"]}
optional-dependencies = {dev = { file = ["requirements_dev.txt"] }}
[project.scripts]
boxes = 'scripts.boxes:main'
boxesserver = 'scripts.boxesserver:main'
[project.urls]
Homepage = "https://hackaday.io/project/10649-boxespy"
Repository = "https://github.com/florianfesti/boxes"
Documentation = "https://florianfesti.github.io/boxes/html/index.html"