-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.25 KB
/
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
40
41
42
43
44
45
[tool.poetry]
name = "novaad"
version = "0.1.6"
description = "An Analog/Mixed-Signal IC design tool based on the Gm/Id method."
authors = ["dasdias <[email protected]>"]
license = "BSD-2"
readme = "README.md"
keywords = ["analog", "mixed-signal", "ic", "design", "gm/id", "eda-cad"]
# Specify files or directories to include in the distribution
include = [
"README.md", # Include the README file
"LICENSE", # Include the LICENSE file
"novaad/*.yaml", # Include all YAML files in the config directory
"novaad/*.yml", # Include all YAML files in the root directory
"docs/**", # Include all files in the docs directory
"tests/**" # Include all files in the tests/data directory
]
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.2.2"
numpy = "^2.1.0"
PyYAML = "^6.0.2"
plotly = "^5.24.0"
docopt = "^0.6.2"
scipy = "^1.14.1"
pydantic = "^2.8.2"
toml = "^0.10.2"
confz = "^2.0.1"
tables = "^3.10.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-benchmark = "^4.0.0"
poetry-setup = "^0.3.6"
poetry = "^1.8.3"
pytest-coverage = "^0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
novaad = 'novaad.__main__:main'