generated from rochacbruno/flask-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
pyproject.toml
110 lines (98 loc) · 2.43 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[tool.poetry]
name = "hiddifypanel"
version = "10.70.0" # Replace with dynamic version read if required
description = "hiddifypanel multi proxy panel"
readme = "README.md"
homepage = "https://hiddify.com"
repository = "https://github.com/hiddify/hiddify-manager/"
authors = ["hiddify" ]
license = "LICENSE.md"
keywords = ["proxy", "panel", "multi"]
documentation = "https://hiddify.com/manager"
[project.scripts]
hiddifypanel = "hiddifypanel.__main__:main"
[tool.setuptools.packages.find]
include = ["hiddifypanel"]
exclude = ["tests", ".github"]
[tool.setuptools.package-data]
"hiddifypanel" = [
"translations/*/LC_MESSAGES/*.mo",
"translations.i18n/*.json"
]
"" = ["hiddifypanel/translations/*/LC_MESSAGES/*.mo"]
[tool.poetry.dependencies]
python = "^3.10"
apiflask = "2.1.1"
babel = "2.14.0"
bootstrap-flask = "2.3.3"
flask-admin = "1.6.1"
flask-adminlte3 = "1.0.9"
flask-classful = "0.16.0"
flask-login = "0.6.3"
flask-restful = "0.3.10"
flask-sqlalchemy = "3.1.1"
flask-session = "0.8.0"
flask-wtf = "1.2.1"
flask = "3.0.2"
markupsafe = "2.1.5"
pymysql = "1.1.0"
pyyaml = "^6.0.2"
sqlalchemy-utils = "0.41.2"
sqlalchemy-serializer = "1.4.12"
sqlalchemy = "2.0.29"
strenum = "0.4.15"
wtforms = "3.1.2"
werkzeug = "3.0.1"
ansi2html = "1.9.1"
bjoern = "3.2.2"
click = "8.1.7"
cloudflare = "2.19.2"
cryptography = "42.0.5"
fastenumplus = "1.4.0"
flask-apispec = "0.11.4"
flask-babel = "4.0.0"
loguru = "0.7.2"
maxminddb = "2.6.0"
netifaces = "0.11.0"
ping3 = "4.0.5"
psutil = "5.9.8"
python-dateutil = "2.9.0.post0"
python-dotenv = "1.0.1"
python-redis-cache = "3.1.0"
python-slugify = "8.0.4"
redis = "5.0.3"
requests = "2.31.0"
pytelegrambotapi = "4.22.1"
user-agents = "2.2.0"
xtlsapi = "3.1.2"
mysqlclient = "^2.2.5"
bleach = "^6.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
coverage = "^7.6.4"
flake8 = "^7.1.1"
black = "^24.10.0"
isort = "^5.13.2"
pytest-cov = "^6.0.0"
codecov = "^2.1.13"
mypy = "^1.13.0"
gitchangelog = "^3.0.4"
mkdocs = "^1.6.1"
flask-debugtoolbar = "^0.16.0"
flask-shell-ipython = "^0.5.3"
ipdb = "^0.13.13"
pytest-flask = "^1.3.0"
python-dotenv = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
hiddifypanel = 'hiddifypanel.__main__:main'
[[tool.poetry.source]]
name = 'aliyun.mirrors'
url = 'https://mirrors.aliyun.com/pypi/simple/'
priority="supplemental"
[[tool.poetry.source]]
name = "pypi-public"
url = "https://pypi.org/simple/"
priority="primary"