-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
91 lines (83 loc) · 2.34 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "freezing-web"
version = "1.6.0"
description = "Freezing Saddles website component."
authors = [
{name = "Hans Lellelid", email = "[email protected]"},
{name = "Ian Will"},
{name = "Jon Renaut"},
{name = "Merlin Hughes"},
{name = "Richard Bullington-McGuire", email = "[email protected]"},
{name = "Adrian Porter"},
{name = "Joe Tatsuko"}
]
license = {text = "Apache License (2.0)"}
dependencies = [
"Flask==3.1.0",
"GeoAlchemy2==0.16.0",
"PyMySQL[rsa]==1.1.1",
"PyYAML==6.0.2",
"SQLAlchemy==1.4.54",
# Thanks https://stackoverflow.com/a/77214086/424301 - Flask did not pin Werkzeug dep
"Werkzeug==3.1.3",
"arrow==1.3.0",
"autoflake==2.3.1",
"beautifulsoup4==4.12.3",
"colorlog==6.9.0",
"envparse==0.2.0",
"freezing-model @ https://github.com/freezingsaddles/freezing-model/archive/0.10.4.tar.gz",
"gunicorn==23.0.0",
"marshmallow==3.23.2",
"marshmallow-enum @ https://github.com/lyft/marshmallow_enum/archive/support-for-marshamallow-3.tar.gz",
"python-instagram==1.3.2",
"pytz==2024.2",
"stravalib==1.2.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Topic :: Games",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Natural Language :: English",
]
[project.optional-dependencies]
dev = [
"bandit",
"black",
"djlint",
"flake8",
"flake8-pyproject",
"isort",
"pre-commit",
"pymarkdownlnt",
]
[tool.isort]
profile = "black"
[tool.djlint]
line_break_after_multiline_tag=true
max_line_length=88
[tool.pymarkdown]
plugins.md013.enabled = false
extensions.front-matter.enabled = true
[tool.setuptools]
# Thanks https://stackoverflow.com/a/72547402/424301
py-modules = ["freezing"]
[project.scripts]
freezing-server = "freezing.web.runserver:main"
[tool.flake8]
# Thanks https://www.reddit.com/r/learnpython/comments/rr6y69/comment/hqeqt68/?utm_source=share&utm_medium=web2x&context=3
ignore = [
"E203",
"E501",
"W503",
]
max-line-length = 88
max-complexity = 39
extend-ignore = "E203"
inline-quotes = "double"