forked from luizribeiro/mariner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 821 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
[tool.poetry]
name = "mariner"
version = "0.2.0"
description = "Web application for controlling MSLA 3D Printers based on ChiTu controllers"
license = "MIT"
readme = "README.rst"
authors = [
"Luiz Ribeiro <luizribeiro@gmail.com>",
]
[tool.poetry.scripts]
mariner = 'mariner.server:main'
[tool.poetry.dependencies]
flask = "2.0.2"
flask-caching = "1.10.1"
Flask-WTF = "1.0.0"
pypng = "0.0.21"
pyre-extensions = "0.0.27"
pyserial = "3.5"
python = "^3.7, !=3.9"
toml = "0.10.2"
typedstruct = "0.1.0"
waitress = "2.0.0"
whitenoise = "5.3.0"
[tool.poetry.dev-dependencies]
black = "22.1.0"
flake8 = "4.0.1"
freezegun = "1.1.0"
green = "3.4.1"
pyexpect = "1.0.21"
pyfakefs = "4.5.4"
pyre-check = "0.9.10"
python-language-server = "0.36.2"
[build-system]
requires = ["poetry>=1.0.10"]
build-backend = "poetry.masonry.api"