-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to use pyproject.toml and trusted deploy
- Loading branch information
Showing
4 changed files
with
90 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
- method: pip | ||
path: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "peakrdl-ipxact" | ||
dynamic = ["version"] | ||
requires-python = ">=3.5.2" | ||
dependencies = [ | ||
"systemrdl-compiler >= 1.24.0, < 2", | ||
] | ||
|
||
authors = [ | ||
{name="Alex Mykyta"}, | ||
] | ||
description = "Import and export IP-XACT XML to/from the systemrdl-compiler register model" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
keywords = [ | ||
"SystmRDL", "PeakRDL", "CSR", "compiler", "tool", "registers", "generator", | ||
"IP-XACT", | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"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.12", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", | ||
] | ||
|
||
[project.urls] | ||
Documentation = "https://peakrdl-ipxact.readthedocs.io" | ||
Source = "https://github.com/SystemRDL/PeakRDL-ipxact" | ||
Tracker = "https://github.com/SystemRDL/PeakRDL-ipxact/issues" | ||
Changelog = "https://github.com/SystemRDL/PeakRDL-ipxact/releases" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "peakrdl_ipxact.__about__.__version__"} | ||
|
||
[project.entry-points."peakrdl.exporters"] | ||
ip-xact = "peakrdl_ipxact.__peakrdl__:Exporter" | ||
|
||
[project.entry-points."peakrdl.importers"] | ||
ip-xact = "peakrdl_ipxact.__peakrdl__:Importer" |