-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.3 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
[project]
name = "ftp_download"
authors = [
{name = "Vitor F. Lins", email = "vflins@live.com"},
]
description = "Easily download files from ftp servers!"
requires-python = ">=3.6"
keywords = ["download", "ftp"]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
version = "0.1.1"
[project.urls]
Repository = "https://github.com/VFLins/ftp_download"
Documentation = "https://vflins.github.io/ftp_download/docs/ftp_download.html"
[project.optional-dependencies]
test = [
"flake8==7.0.0",
"pytest==7.4.4",
"pytest-cov==4.1.0",
"tox==4.12.0",
"mypy==1.8.0",
"pdoc==14.3.0",
"wheel==0.42.0"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov=ftp_download"
testpaths = ["tests"]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.mypy]
mypy_path = "src"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true