-
Notifications
You must be signed in to change notification settings - Fork 78
/
pyproject.toml
54 lines (49 loc) · 1.67 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
51
52
53
54
# See PyRTL's release documentation in docs/release/README.md
#
# This file configures PyRTL's distribution archives, which are built and
# uploaded to PyPI with GitHub actions.
#
# This configuration is roughly based on the "Packaging Python Projects"
# tutorial at
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pyrtl"
# hatch-vcs determines the version number from the latest git tag.
dynamic = ["version"]
authors = [
{name="Timothy Sherwood", email="[email protected]"},
{name="John Clow"},
{name="UCSBarchlab"},
]
description = "RTL-level Hardware Design and Simulation Toolkit"
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: System :: Hardware",
]
[project.optional-dependencies]
# Required by `input_from_blif`.
blif = ["pyparsing"]
# Required by `block_to_svg`.
svg = ["graphviz"]
[project.urls]
Homepage = "http://ucsbarchlab.github.io/PyRTL/"
GitHub = "https://github.com/UCSBarchlab/PyRTL"
Documentation = "https://pyrtl.readthedocs.io/"
Changelog = "https://github.com/UCSBarchlab/PyRTL/blob/development/CHANGELOG.md"
[tool.hatch.version]
source = "vcs"