forked from heitzmann/gdstk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
[build-system]
requires = [
"scikit_build_core",
"numpy >= 2.0"
]
build-backend = "scikit_build_core.build"
[project]
name = "gdstk"
version = "0.9.58"
authors = [{name = "Lucas H. Gabrielli", email = "[email protected]"}]
description = "Python module for creation and manipulation of GDSII files."
readme = "README.md"
keywords = ["GDSII", "OASIS", "CAD", "layout"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0)",
"Operating System :: OS Independent",
"Programming Language :: C++",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Typing :: Typed",
]
license = {file = "LICENSE"}
dependencies = [
"numpy",
"typing_extensions; python_version < '3.11'"
]
requires-python = ">=3.9"
[project.optional-dependencies]
docs = ["sphinx", "sphinx_rtd_theme", "sphinx-inline-tabs", "matplotlib"]
[project.urls]
documentation = "https://heitzmann.github.io/gdstk/"
repository = "https://github.com/heitzmann/gdstk"
changelog = "https://github.com/heitzmann/gdstk/blob/main/CHANGELOG.md"
[tool.scikit-build]
cmake.version = ">=3.26"
# cmake.build-type = "debug"
build-dir = "build/{wheel_tag}"
sdist.reproducible = false
# package_data={"gdstk": ["*.pyi", "py.typed"]},
wheel.packages = ["gdstk"]
install.components = ["_gdstk"]
[tool.black]
line-length = 100