-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.53 KB
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
55
56
57
[project]
description = "Generate VHDL, SystemVerilog, html, rst, md, pdf, c headers from an IPXACT description"
readme = "README.md"
version = "1.0.30"
name = "ipxact2systemverilog"
authors = [
{name = "oddball"},
]
keywords = ["ipxact2systemverilog", "ipxact2vhdl", "ipxact2c", "ipxact2py", "VHDL", "SystemVerilog", "html", "rst", "md", "pdf", "IPXACT", "python"]
requires-python = ">= 3"
dependencies = [
"docutils",
"lxml",
"mdutils",
"restructuredtext-lint",
"sphinx",
"sphinxcontrib-wavedrom",
"rstcloth",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Embedded Systems",
"Programming Language :: Python :: 3",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["ipxact2systemverilog"]
[project.scripts]
ipxact2c = "ipxact2systemverilog.cli:main_c"
ipxact2md = "ipxact2systemverilog.cli:main_md"
ipxact2rst = "ipxact2systemverilog.cli:main_rst"
ipxact2systemverilog = "ipxact2systemverilog.cli:main_systemverilog"
ipxact2vhdl = "ipxact2systemverilog.cli:main_vhdl"
ipxact2py = "ipxact2systemverilog.cli:main_py"
[project.urls]
Repository = "https://github.com/oddball/ipxact2systemverilog"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
# To include Git sub modules
ipxact2systemverilog = [
"xml/**/*.xsd",
"xml/**/README.md",
"xml/**/LICENSE.md",
]