-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
30 lines (27 loc) · 1 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "schemascii"
version = "0.3.2"
description = "Render ASCII-art schematics to SVG"
readme = "README.md"
authors = [{ name = "dragoncoder047", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
'Development Status :: 4 - Beta',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering",
]
keywords = ["schematic", "electronics", "circuit", "diagram"]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/dragoncoder047/schemascii"
[project.scripts]
schemascii = "schemascii.__main__:cli_main"