forked from aio-libs/aioftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
98 lines (88 loc) · 2.46 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "aioftp"
version = "0.22.3"
description = "ftp client/server for asyncio"
readme = "README.rst"
requires-python = ">= 3.8"
license = {file = "license.txt"}
authors = [
{name = "yieyu"},
{name = "rsichnyi"},
{name = "jw4js"},
{name = "oleksandr-kuzmenko"},
{name = "ndhansen"},
{name = "modelmat"},
{name = "greut"},
{name = "PonyPC"},
{name = "jacobtomlinson"},
{name = "bachya"},
{name = "CrafterKolyan"},
{name = "jkr78"},
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Topic :: Internet :: File Transfer Protocol (FTP)",
]
[project.urls]
Github = "https://github.com/aio-libs/aioftp"
Documentation = "https://aioftp.readthedocs.io"
[project.optional-dependencies]
socks = [
"siosocks >= 0.2.0",
]
dev = [
# tests
"async_timeout >= 4.0.0",
"pytest-asyncio",
"pytest-cov",
"pytest",
"siosocks",
"trustme",
# linters
"pre-commit",
"black",
"ruff",
# docs
"sphinx",
"alabaster",
"docutils < 0.18.0",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages.find.where = ["src"]
# tools
[tool.black]
line-length = 120
target-version = ["py38"]
[tool.ruff]
line-length = 120
target-version = "py38"
select = ["E", "W", "F", "Q", "UP", "I", "ASYNC"]
src = ["src"]
[tool.coverage]
run.source = ["./src/aioftp"]
run.omit = ["./src/aioftp/__main__.py"]
report.show_missing = true
[tool.pytest.ini_options]
addopts = "-x --durations 10 -p no:anyio --cov"
testpaths = "tests"
log_format = "%(asctime)s.%(msecs)03d %(name)-20s %(levelname)-8s %(filename)-15s %(lineno)-4d %(message)s"
log_date_format = "%H:%M:%S"
log_level = "DEBUG"
asyncio_mode = "strict"