Skip to content

Commit

Permalink
Replace setup.py with pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
djcopley committed Jan 12, 2024
1 parent 584d0ae commit 6f0ba19
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 64 deletions.
53 changes: 52 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,54 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=64.0", "setuptools_scm>=8.0"]
build-backend = "setuptools.build_meta"

[project]
name = "fusesoc"
authors = [
{ name = "Olof Kindgren", email = "[email protected]" },
]
description = "FuseSoC is a package manager and a set of build tools for HDL (Hardware Description Language) code."
readme = "README.md"
requires-python = ">=3.6, <4"
license = { text = "BSD-3-Clause" }
keywords = [
"VHDL",
"verilog",
"hdl",
"rtl",
"synthesis",
"FPGA",
"simulation",
"Xilinx",
"Altera",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: BSD License",
]
dependencies = [
"edalize>=0.4.1",
"pyparsing>=2.3.1",
"pyyaml>=6.0",
"simplesat>=0.8.0",
"fastjsonschema",
"jsonschema2md",
]
dynamic = ["version"]

[tool.setuptools]
packages = ["fusesoc", "fusesoc.capi2", "fusesoc.provider", "fusesoc.parser"]

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

[project.scripts]
fusesoc = "fusesoc.main:main"

[project.urls]
Homepage = "https://github.com/olofk/fusesoc"
Documentation = "https://fusesoc.readthedocs.io/en/stable/index.html"
Repository = "https://github.com/olofk/fusesoc.git"
Issues = "https://github.com/olofk/fusesoc/issues"
63 changes: 0 additions & 63 deletions setup.py

This file was deleted.

0 comments on commit 6f0ba19

Please sign in to comment.