-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (34 loc) · 1.25 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
43
44
45
46
47
48
49
50
[project]
name = "axicli"
version = "3.9.3"
description = "AxiDraw CLI and Python API"
readme = "README.txt"
requires-python = ">=3.7"
authors = [
{name = "Windell H. Oskay", email = "windell@evilmadscientist.com" } # Optional
]
maintainers = [
{name = "Evil Mad Science LLC", email = "contact@evilmadscientist.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
[project.urls] # Optional
"CLI API documentation" = "https://axidraw.com/doc/cli_api/'"
"Python API documentation" = "https://axidraw.com/doc/cli_api/"
"About AxiDraw" = "https://axidraw.com/"
"A project by" = "https://shop.evilmadscientist.com"
[project.optional-dependencies]
dev = ["axidrawinternal>=3.0.0", "coverage", "mock", "pyfakefs"] # see Installation instructions
test = ["coverage", "mock", "pyfakefs"]
hershey = ["hersheyadvanced"] # see Installation instructions
[build-system]
requires = ["setuptools >= 40.6.0"]
build-backend = "setuptools.build_meta"