-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
100 lines (91 loc) · 2.48 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
99
100
[project]
name = "aioftp"
version = "0.23.1"
description = "ftp client/server for asyncio"
readme = "README.rst"
requires-python = ">= 3.9"
license = {file = "license.txt"}
authors = [
{name = "pohmelie", email = "[email protected]"},
{name = "yieyu"},
{name = "rsichnyi"},
{name = "jw4js"},
{name = "asvetlov", email = "[email protected]"},
{name = "decaz", email = "[email protected]"},
{name = "oleksandr-kuzmenko"},
{name = "ndhansen"},
{name = "janneronkko", email="[email protected]"},
{name = "thirtyseven", email="[email protected]"},
{name = "modelmat"},
{name = "greut"},
{name = "ported-pw", email="[email protected]"},
{name = "PonyPC"},
{name = "jacobtomlinson"},
{name = "Olegt0rr", email="[email protected]"},
{name = "michalc", email="[email protected]"},
{name = "bachya"},
{name = "ch3pjw", email="[email protected]"},
{name = "puddly", email="[email protected]"},
{name = "CrafterKolyan"},
{name = "jkr78"},
{name = "AMDmi3", email="[email protected]"},
{name = "webknjaz", email="webknjaz+github/[email protected]"},
]
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",
"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.ruff]
line-length = 120
target-version = "py39"
lint.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
report.precision = 2
[tool.pytest.ini_options]
addopts = [
"-x",
"--durations", "10",
"-p", "no:anyio",
"--cov",
"--import-mode=importlib",
]
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"