forked from mnbf9rca/mariner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 973 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 = "mariner"
version = "0.4.0"
description = "Web application for controlling MSLA 3D Printers based on ChiTu 4.4.3 controller"
license = "MIT"
readme = "README.rst"
authors = [
"Luiz Ribeiro <[email protected]>",
"Neil Larmour <[email protected]>",
"rob aleck <[email protected]>"
]
[tool.poetry.scripts]
mariner = 'mariner.server:main'
[tool.poetry.dependencies]
flask = "2.2.2"
flask-caching = "2.0.1"
Flask-WTF = "1.0.1"
pypng = "0.20220715.0"
pyre-extensions = "0.0.29"
pyserial = "3.5"
python = "^3.9"
toml = "0.10.2"
typedstruct = "0.1.0"
waitress = "2.1.2"
whitenoise = "6.2.0"
pycryptodome = "^3.15.0"
numpy = "^1.23.2"
picamera2 = "^0.3.3"
[tool.poetry.dev-dependencies]
black = "22.10.0"
flake8 = "5.0.4"
freezegun = "1.2.2"
green = "3.4.3"
pyexpect = "1.0.21"
pyfakefs = "5.0.0"
pyre-check = "0.9.16"
python-language-server = "0.36.2"
pylint = "^2.15"
[build-system]
requires = ["poetry>=1.0.10"]
build-backend = "poetry.masonry.api"