-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 927 Bytes
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
[project]
name = "pyipxact"
version = "0.1.0"
description = "Accellera IP-XACT CLI Tool"
readme = "README.md"
authors = [
{ name = "Amal Khailtash", email = "amal.khailtash@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"xsdata[cli,lxml]",
]
# [tool.setuptools.packages.find]
[project.scripts]
# ipxact_validate = "amal.eda.ipxact.cli:main"
# ipxact_convert = "amal.eda.ipxact.cli:main"
ipxact = "amal.eda.ipxact_cli.__main__:main"
[tool.hatch.build.targets.sdist]
# include = []
exclude = [
".ruff_cache/",
".uv_cache/",
"PyXB/",
"test-*",
]
[tool.ruff]
line-length = 100
[tool.uv.sources]
xsdata = { git = "https://github.com/tefra/xsdata" }
[tool.hatch.build.targets.wheel]
packages = [
"src/amal",
"src/org"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.3.3",
"xsdata[cli,lxml,soap]>=24.11",
]