Skip to content

Commit

Permalink
Complete migration to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Nov 11, 2024
1 parent c07de87 commit 44edd87
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 107 deletions.
41 changes: 40 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"

[project]
name = "edalize"
description = "Library for interfacing EDA tools such as simulators, linters or synthesis tools, using a common interface"
readme = "README.rst"
authors = [
{name = "Olof Kindgren", email = "[email protected]"}
]
maintainers = [
{name = "Olof Kindgren", email = "[email protected]"}
]
keywords = ["VHDL", "verilog", "EDA", "hdl", "rtl", "synthesis", "FPGA", "simulation", "Xilinx", "Altera"]

classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Utilities",
]

dynamic = ["version"]
dependencies = ["Jinja2>=3"]
requires-python = ">=3.6, <4"

[project.urls]
Homepage = "https://github.com/olofk/edalize"
Documentation = "https://edalize.readthedocs.io"
Repository = "https://github.com/olofk/edalize"
Issues = "https://github.com/olofk/edalize/issues"
Changelog = "https://github.com/olofk/edalize/blob/main/NEWS"

[tool.setuptools]
script-files = ["scripts/el_docker"]

[tool.setuptools_scm]
version_file = "edalize/version.py"

[tool.setuptools.packages.find]
include = ["edalize", "edalize.tools", "edalize.flows"]
106 changes: 0 additions & 106 deletions setup.py

This file was deleted.

0 comments on commit 44edd87

Please sign in to comment.