-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 992 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
40
41
42
43
[tool.poetry]
name = "layout2svg"
version = "0.1.6"
description = "A package to convert IC layouts (GDS2 and OASIS) to SVG."
authors = ["dasdias <[email protected]>"]
repository = "https://github.com/das-dias/layout2svg"
readme = "README.md"
license = "GPLv2"
keywords = ["layout", "svg", "gds2", "oasis"]
[tool.poetry.dependencies]
python = "^3.9"
docopt = "^0.6.2"
klayout = "^0.28.10"
loguru = "^0.7.0"
gdstk = "^0.9.42"
PyYAML = "^6.0.1"
colour = "^0.1.5"
lxml = "^4.9.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^4.1.0"
black = "^23.7.0"
[tool.poetry.scripts]
layout2svg = "layout2svg.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.autohooks]
mode = "pipenv"
pre-commit = ["autohooks.plugins.black"]
[tool.autohooks.plugins.black]
arguments = ["--fast"]
# convertion from pyproject to setup.py
[tool.dephell.main]
from={fromat="poetry", path="pyproject.toml"}
to={format="setuppy", path="setup.py"}