forked from sparkmicro/Ki-nTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1020 Bytes
/
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
[tool.poetry]
name = "kintree"
version = "1.1.99" # placeholder
description = "Fast part creation in KiCad and InvenTree"
authors = ["eeintech <[email protected]>"]
maintainers = ["eeintech <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/sparkmicro/Ki-nTree"
repository = "https://github.com/sparkmicro/Ki-nTree"
keywords = ["inventree", "kicad", "digikey", "mouser", "component", "part", "create"]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
digikey-api = "^1.0.0"
flet = "^0.22.0"
thefuzz = "^0.19.0"
inventree = "^0.13.3"
kiutils = "^1.4.0"
mouser = "^0.1.3"
multiprocess = "^0.70.12"
pyyaml = "^6.0.1"
validators = "^0.19.0"
wrapt_timeout_decorator = "^1.3.12"
[tool.poetry.dev-dependencies]
invoke = "^2.0.0"
coveralls = "^3.3.1"
[tool.poetry.scripts]
kintree = 'kintree.kintree_gui:main'
kintree_setup_inventree = 'kintree.setup_inventree:setup_inventree'
[build-system]
requires = ["poetry-core>=1.4.2"]
build-backend = "poetry.core.masonry.api"