-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.18 KB
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
[project]
name = "FreshProxy"
version = "0.1.0"
description = "A minimal Flask proxy for a FreshRSS instance"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name="hstct", email="mail@hostc.at" }
]
keywords = ["Flask", "FreshRSS", "proxy", "API"]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Flask",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
]
dependencies = [
"Flask~=3.1.0",
"Flask-Cors~=5.0.0",
"gunicorn~=23.0.0",
"requests~=2.32.3",
"python-dotenv~=1.0.0",
]
[project.optional-dependencies]
test = [
"pytest~=8.3.4",
"pytest-cov~=6.0.0",
]
lint = [
"black~=24.10.0",
"flake8~=7.1.0",
]
[build-system]
requires = ["setuptools>=65.5.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ["py39", "py310", "py311"]
exclude = '''
/(
\.git
| \.venv
| build
| dist
)/
'''