-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.03 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
[tool.poetry]
name = "volare"
version = "0.20.5"
description = "An PDK builder/version manager for PDKs in the open_pdks format"
authors = ["Efabless Corporation and Contributors <donn@efabless.com>"]
readme = "Readme.md"
license = "Apache-2.0"
homepage = "https://efabless.com"
repository = "https://github.com/efabless/volare"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
[tool.poetry.dependencies]
python = ">=3.8"
click = ">=8,<9"
pyyaml = ">=5,<7"
rich = ">=12,<14"
httpx = ">=0.22.0,<0.29"
pcpp = ">=1.2,<2"
zstandard = ">=0.19.0,<1"
[tool.poetry.dev-dependencies]
wheel = "*"
black = ">=24.4.0,<25"
flake8 = ">=4"
mypy = ">=1.9.0,<1.10.0"
types-PyYAML = "*"
types-setuptools = "*"
types-attrs = "*"
[tool.poetry.scripts]
volare = "volare.__main__:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"