-
Notifications
You must be signed in to change notification settings - Fork 195
/
pyproject.toml
44 lines (38 loc) · 1.19 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
[tool.poetry]
name = "cup"
version = "3.2.34"
description = "A common useful python library"
authors = ["CUP Dev Team lead by Guannan Ma <[email protected]>"]
maintainers = ["Guannan Ma <[email protected]>"]
license = "Apache License V2"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
homepage = "https://github.com/baidu/CUP"
keywords = ["pylib", "lib", "common", "cup"]
packages = [
{ include = "cup", from = "./src" }
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.28.2"
pytz = "^2022.7.1"
psutil = "^5.9.4"
pexpect = "^4.8.0"
paramiko = "^3.0.0"
twist = "^0.0.1"
netifaces = "^0.11.0"
[[tool.poetry.source]]
name = "tsinghua-mirror"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"