-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (40 loc) · 893 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
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "piku"
version = "0.2.4"
description = ""
authors = [
"Mark Raleson <[email protected]>",
"Tammy Cravit <[email protected]>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mraleson/piku.git"
packages = [
{ include="piku" }
]
[tool.poetry.dependencies]
python = "^3.8"
pyserial = "^3.5"
toml = "^0.10.2"
appdirs = "^1.4.4"
requests = "^2.27.1"
Jinja2 = "^3.0.3"
adafruit-board-toolkit = "^1.1.0"
poetry-core = "1.0.7"
cachy = "^0.3.0"
watchdog = "^2.1.7"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
pylint-quotes = "^0.2.3"
pylint = "^2.12.2"
pytest-watcher = "^0.2.3"
pytest-mock = "^3.7.0"
[tool.poetry.scripts]
piku = 'piku.main:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [ "tests" ]