-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (60 loc) · 1.39 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
[project]
name = "dashboard"
authors = [
{name = "Ondřej Nejedlý", email = "[email protected]"},
]
dynamic = ["version"]
description = "Statistics Dashboard for Na-ovoce.cz"
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.11"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"boto3",
"flask",
"flask-htmx",
"flask-login",
"flask-restful",
"flask-sqlalchemy",
"geoalchemy2",
"gunicorn",
"gunicorn[gevent]",
"jinja2-fragments",
"psycopg2-binary",
"python-dotenv",
"requests",
"shapely",
"werkzeug",
]
[project.optional-dependencies]
dev = [
"black",
"honcho",
"isort",
"pip-tools",
"watchdog",
]
[project.urls]
homepage = "https://github.com/jsmesami/naovoce-dashboard"
repository = "https://github.com/jsmesami/naovoce-dashboard"
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["dashboard"]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "dashboard.__version__"}
[tool.setuptools.package-data]
dashboard = ["templates/*.html"]
[tool.black]
target-version = ["py311"]
src_paths = ["dashboard"]
[tool.isort]
profile = "black"
src_paths = ["dashboard"]