-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.06 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
[tool.poetry]
name = "xray-node"
version = "0.0.1"
description = ""
authors = ["guyue-ls <[email protected]>"]
license = "AGPLv3"
packages = [
{ include = "xray_node" },
]
readme = "README.md"
repository = "https://github.com/laoshan-tech/xray-node"
homepage = "https://github.com/laoshan-tech/xray-node"
[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.17.1"
psutil = "^5.8.0"
tomlkit = "^0.7.0"
grpcio = "^1.37.0"
grpcio-tools = "^1.37.0"
xray-rpc = "^1.4.2"
uvloop = [
{ version = "^0.15.2", platform = "linux|macos" },
]
grpcio-status = "^1.37.0"
click = "^7.1.2"
tortoise-orm = "^0.17.2"
pytest-httpserver = "^1.0.0"
humanize = "^3.7.1"
loguru = "^0.5.3"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest-asyncio = "^0.14.0"
pytest-ordering = "^0.6"
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple/"
default = true
[tool.poetry.scripts]
xnode = "xray_node.main:main"
[tool.black]
line-length = 120
target-version = ["py38"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"