-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (51 loc) · 1.33 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
58
59
60
# pyproject.toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "shadowproxy"
description = "A proxy server that implements Socks5/Shadowsocks/Redirect/HTTP (tcp) and Shadowsocks/TProxy/Tunnel (udp) protocols."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.6"
authors = [
{ name = "Yingbo Gu", email = "tensiongyb@gmail.com" },
]
maintainers = [
{ name = "Yingbo Gu", email = "tensiongyb@gmail.com" },
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
dynamic = ["version"]
dependencies = [
"pycryptodome>=3.4.3",
"curio==0.9",
"pylru>=1.0.9",
"iofree>=0.2.4",
"httptools",
"hkdf",
]
[project.urls]
Homepage = "https://github.com/guyingbo/shadowproxy"
[project.scripts]
shadowproxy = "shadowproxy.__main__:main"
[project.optional-dependencies]
test = [
"pytest",
"coverage",
"pytest-cov",
"flake8",
"codecov",
]
[tool.hatch.version]
path = "shadowproxy/__init__.py"
[tool.pytest.ini_options]
addopts = "-s --verbose tests --cov=shadowproxy --cov=tests --cov-report=term-missing --cov-report=xml"
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true