-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling", "SQLAlchemy", "toml", "paho-mqtt", "colorlog", "flask", "requests", "pyopenssl", "flask-login", "flask-mail", "alembic", "psutil", "flask-excel", "pyexcel-xlsx", "Flask-Babel"]
build-backend = "hatchling.build"
[project]
name = "FabOMatic"
version = "0.7.1"
authors = [
{ name="Lorenzo Rossi", email="[email protected]" },
{ name = "Pascal Brunot", email = "[email protected]" },
{ name="Valerio Nappi", email="[email protected]" }
]
description = "Backend for Fab-O-Matic RFID boards"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"SQLAlchemy>=2.0.25",
"toml==0.10.2",
"paho-mqtt==2.1.0",
"colorlog",
"flask>=2.3.0",
"flask-login",
"pyopenssl>=24.0",
"flask-mail",
"itsdangerous",
"alembic",
"psutil",
"flask-excel",
"pyexcel-xlsx",
"requests",
"Flask-Babel",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
[project.urls]
"Homepage" = "https://github.com/fablab-bergamo/fabomatic-backend"
"Bug Tracker" = "https://github.com/fablab-bergamo/fabomatic-backend/issues"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests"
]
[tool.black]
line-length = 119
[tool.hatch.build.targets.sdist]
artifacts = [
"*.mo",
]
[tool.hatch.build.targets.wheel]
artifacts = [
"*.mo",
]