-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 979 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 979 Bytes
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
[build-system]
requires = [
"setuptools>=61",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "PyLTSpice"
version = "5.5.1"
authors = [
{ name="Nuno Brum", email="me@nunobrum.com" },
]
description = "A set of tools to Automate LTSpice simulations"
readme = "README.md"
license = "GPL-3.0"
requires-python = ">=3.10"
dependencies = [
"spicelib>=1.5.1",
]
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["."] # ["."] by default
include = ["*"] # ["*"] by default
exclude = [".idea", "doc", "doc_build", ".vscode", ".git"] # empty by default
namespaces = true # true by default
[project.urls]
"Homepage" = "https://github.com/nunobrum/PyLTSpice"
"Bug Tracker" = "https://github.com/nunobrum/PyLTSpice/issues"
"Repository" = "https://github.com/nunobrum/PyLTSpice.git"
"Author" = "https://www.nunobrum.com/"