-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gdsfill"
version = "0.1.5"
description = "Open-source tool for inserting dummy metal fill into semiconductor layouts."
authors = [
{ name = "Daniel Schultz", email = "dnltz@aesc-silicon.de" }
]
readme = "README.rst"
license = "LGPL-2.1-or-later"
license-files = ["LICEN[CS]E*"]
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pyyaml",
"packaging",
"gdstk",
"rich"
]
[project.urls]
Homepage = "https://github.com/aesc-silicon/gdsfill"
Issues = "https://github.com/aesc-silicon/gdsfill/issues"
[project.scripts]
gdsfill = "gdsfill.gdsfill:main"
[tool.setuptools.package-data]
gdsfill = [
"library/layers.yaml",
"configs/*.yaml",
"ihp-sg13g2/*yaml",
"ihp-sg13g2/*py",
"ihp-sg13cmos5l/*yaml",
"ihp-sg13cmos5l/*py",
]