-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (57 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
59
60
61
62
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "filesender-client"
description = "FileSender Python CLI and API client"
version = "2.1.0"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["one", "two"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"aiostream",
"aiofiles",
# --base-url is wrongly treated as a positional argument in 0.9.0-0.9.1
"typer>=0.9.2",
"beautifulsoup4",
"rich",
"httpx",
# See: https://github.com/encode/httpcore/pull/883
"httpcore >= 1.0.3",
"cryptography",
"typing_extensions",
"tenacity",
"tqdm"
]
[tool.setuptools.packages.find]
exclude = ["site", "test"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest_asyncio",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-typer",
"mkdocs-jupyter",
"pymdown-extensions",
"pygments",
"black",
"seaborn",
"pandas",
"jupyter",
"notebook<7",
"nbconvert",
"jupyter_contrib_nbextensions"
]
[project.scripts]
filesender = "filesender.main:app"
[tool.pyright]
typeCheckingMode = "strict"
exclude = ["venv", "test"]
reportUnknownMemberType = false
reportUnknownVariableType = false