-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
34 lines (29 loc) · 932 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
[tool.poetry]
name = "inventree_digikey_integration"
version = "0.1.2.2"
description = "A CLI to import Digikey parts into an Inventree instance"
authors = ["Eric Udlis <udlis.eric@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/EUdds/digikey-inventree-integration"
repository = "https://github.com/EUdds/digikey-inventree-integration"
keywords = ["inventree", "digikey"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Natural Language :: English",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.8"
inventree = "^0.13.1"
digikey-api = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
black = "^23.11.0"
pre-commit = "^3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
import_digikey_parts = "inventree_digikey_integration.__main__:main"