forked from kevinpt/symbolator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (38 loc) · 1.15 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
[project]
name = "symbolator"
version = "1.2.2"
authors = [{ name = "Kevin Thibedeau", email = "[email protected]" }]
maintainers = [{ name = "Zebreus", email = "[email protected]" }]
readme = "README.md"
dependencies =[ "sphinx>=4.3,<5"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Documentation",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
keywords = ["HDL", "symbol"]
license = { file = "LICENSE" }
description = "HDL symbol generator"
requires-python = ">=3.3"
[project.urls]
Homepage = "https://zebreus.github.io/symbolator"
source = "https://github.com/zebreus/symbolator"
[project.scripts]
symbolator = "symbolator.__main__:main"
hdlparse = "hdlparse.__main__:main"
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"nucanvas",
"nucanvas.color",
"symbolator_sphinx",
"hdlparse",
"symbolator"
]