-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.14 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
[tool.poetry]
name = "kintree"
version = "1.2.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.13"
# digikey-api = "^1.0.0"
digikey-api = { git = "https://github.com/hurricaneJoef/digikey-api.git", branch = "master" }
setuptools = "^75.6.0"
flet = "^0.24.1"
thefuzz = "^0.22.1"
inventree = "^0.17.2"
kiutils = "^1.4.8"
mouser = "^0.1.6"
multiprocess = "^0.70.17"
pyyaml = "^6.0.2"
validators = "^0.34.0"
wrapt_timeout_decorator = "^1.5.1"
cloudscraper = "^1.2.71"
[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"