forked from hiddify/HiddifyPanel-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1pyproject.toml
45 lines (35 loc) · 1.02 KB
/
1pyproject.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
[project]
name = "hiddifypanel"
description = "hiddifypanel multi proxy panel"
url = "https://github.com/hiddify/HiddifyPanel/"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version","dependencies"]
[tool.setuptools.package-data]
hiddifypanel=["hiddifypanel/translations/*/LC_MESSAGES/*.mo"]
[[tool.mypy.overrides]]
module = ["markdown.*"]
ignore_missing_imports = true
[tool.hatch]
dependency_file = "requirements.txt"
authors = [
{ name = "hiddify", email = "[email protected]" }
]
[tool.setuptools.dynamic]
version = {attr = "hiddifypanel.__version__"}
[project.urls]
Homepage = "https://github.com/hiddify/HiddifyPanel/"
Documentation = "https://github.com/hiddify/hiddify-manager/"
[project.optional-dependencies]
dev = [
"tox",
"pre-commit",
"bump2version"
]
[project.scripts]
hiddifypanel = "hiddifypanel.__main__:main"
[build-system]
#requires = ["setuptools", "wheel", "pyarmor>7.2.0"]
#build-backend = "pyarmor.build_meta"
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"