forked from nunobrum/PyLTSpice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (35 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "PyLTSpice"
version = "5.3.1"
authors = [
{ name="Nuno Brum", email="[email protected]" },
]
description = "A set of tools to Automate LTSpice simulations"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.8"
dependencies = [
"spicelib>=1.1.2",
]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"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/"