blob: 4e817016c60a9575c30f727e77dd0bf4a715194b (
plain)
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
92
93
94
95
96
97
98
99
100
101
|
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "fietsboek"
description = "GPX file sharing website"
version = "0.4.0"
license = "AGPL-3.0-or-later"
readme = "README.md"
authors = [
"Daniel Schadt <fietsboek@kingdread.de>",
]
classifiers = [
'Development Status :: 3 - Alpha',
'Framework :: Pyramid',
'Operating System :: POSIX :: Linux',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
]
documentation = "https://kingdread.de/fietsboek/"
repository = "https://gitlab.com/dunj3/fietsboek"
keywords = ["web", "gpx"]
[tool.poetry.dependencies]
python = "^3.7.2"
pyramid = "^2"
pyramid_jinja2 = "^2.10"
pyramid_debugtoolbar = "^4.9"
pyramid_retry = "^2.1"
pyramid_tm = "^2.5"
waitress = "^2.1"
SQLAlchemy = "^1.4"
alembic = "^1.8"
transaction = "^3"
"zope.sqlalchemy" = "^1.6"
redis = "^4.3.4"
# Compatibility with old Python versions
importlib_resources = "^5.10"
importlib_metadata = "^5.0.0"
Babel = "^2.11"
cryptography = "^38"
gpxpy = "^1.5"
markdown = "^3.4"
bleach = "^5"
Click = "^8.1"
requests = "^2.28.1"
pydantic = "^1.10.2"
termcolor = "^2.1.1"
filelock = "^3.8.2"
brotli = "^1.0.9"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.3"
[tool.poetry.group.testing]
optional = true
[tool.poetry.group.testing.dependencies]
pytest = "^7.2.0"
webtest = "^3.0.0"
pytest-cov = "^4.0.0"
pytest-playwright = "^0.3.0"
[tool.poetry.group.linters]
optional = true
[tool.poetry.group.linters.dependencies]
pylint = "^2.15.8"
black = "^22.12.0"
[tool.poetry.group.types]
optional = true
[tool.poetry.group.types.dependencies]
mypy = "^0.991"
types-markdown = "^3.4.2.1"
types-requests = "^2.28.11.5"
types-bleach = "^5.0.3.1"
types-babel = "^2.11.0.7"
types-redis = "^4.3.21.6"
[tool.poetry.scripts]
fietsctl = "fietsboek.scripts.fietsctl:main"
fietsupdate = "fietsboek.updater.cli:cli"
[tool.poetry.plugins."paste.app_factory"]
main = "fietsboek:main"
[tool.black]
line-length = 100
extend-exclude = '''upd_.+\.py|^/fietsboek/alembic/versions/.+'''
|