-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.07 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "spicelib"
version = "1.3.5"
description = "A set of tools to Automate Spice simulations"
authors = ["Nuno Brum <[email protected]>"]
readme = "README.md"
license = "GPL-3.0"
keywords = ["spice", "ltspice", "qspice", "ngspice", "electronic simulator", "montecarlo", "worst-case"]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "*"
scipy = "*"
psutil = "*"
clipboard = "*"
matplotlib = "*"
keyboard = "*"
[tool.poetry.scripts]
ltsteps = "spicelib.scripts.ltsteps:main"
histogram = "spicelib.scripts.histogram:main"
rawplot = "spicelib.scripts.rawplot:main"
run_server = "spicelib.scripts.run_server:main"
asc_to_qsch = "spicelib.scripts.asc_to_qsch:main"
rawconvert = "spicelib.raw.raw_convert:main"
readme_update = "spicelib.scripts.readme_update:main"
[tool.poetry.urls]
homepage = "https://github.com/nunobrum/spicelib"
repository = "https://github.com/nunobrum/spicelib.git"
bug-tracker = "https://github.com/nunobrum/spicelib/issues"
author = "https://www.nunobrum.com/"