forked from nunobrum/PyLTSpice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.18 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "PyLTSpice"
version = "4.0.6"
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 = [
"numpy",
"scipy",
"psutil",
"clipboard",
"matplotlib",
"keyboard",
]
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 = ["tests"] # empty by default
namespaces = true # true by default
[project.scripts]
ltsteps = "PyLTSpice.LTSteps:main"
histogram = "PyLTSpice.Histogram:main"
rawplot = "PyLTSpice.rawplot:main"
rawconvert = "PyLTSpice.raw.raw_convert:main"
run_server = "PyLTSpice.run_server:main"
[project.urls]
"Homepage" = "https://github.com/nunobrum/PyLTSpice"
"Bug Tracker" = "https://github.com/nunobrum/PyLTSpice/issues"