-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
39 lines (33 loc) · 944 Bytes
/
pyproject.toml
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
[project]
name = "cace"
dynamic = [
"version",
"dependencies"
]
requires-python = ">=3.8"
authors = [
{ name="Tim Edwards", email="tim@efabless.com" },
{ name="Leo Moser", email="leo.moser@efabless.com" },
]
description = "Circuit Automatic Characterization Engine"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.setuptools.dynamic]
version = {attr = "cace.__version__"}
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://github.com/efabless/cace"
Issues = "https://github.com/efabless/cace/issues"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=7"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["cace*"]
[project.scripts]
cace = "cace.cace_cli:cli"
#cace-gui = "cace.cace_gui:gui"
[tool.setuptools_scm]