-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.32 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
[tool.poetry]
name = "ys-dl"
version = "0.1.2"
description = "Command-line program to download images from Genshin Impact Community"
license = "MIT"
authors = ["XavierJiezou <[email protected]>"]
maintainers = []
readme = "README.md"
homepage = "https://github.com/XavierJiezou/ys-dl"
repository = "https://github.com/XavierJiezou/ys-dl"
documentation = "https://github.com/XavierJiezou/ys-dl"
keywords = ["landsat8", "cloud", "mask"]
classifiers = ["Topic :: Software Development :: Libraries :: Python Modules"]
packages = [{ include = "ys_dl" }]
include = ["CHANGELOG.md"]
exclude = []
[tool.poetry.build]
generate-setup-file = false
[tool.poetry.dependencies]
python = "^3.7"
fire = "^0.4.0"
rich = "^12.3.0"
selenium = "^4.1.5"
pyautogui = "^0.9.53"
pyperclip = "^1.8.2"
requests = "^2.27.1"
fake-useragent = "^0.1.11"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
autopep8 = "^1.6.0"
toml = "^0.10.2"
pytest-cov = "^3.0.0"
pylint = "^2.13.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "tsinghua-pypi"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test"
[tool.poetry.scripts]
ys-dl = "ys_dl.cli:main"