-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.04 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pydoppler"
authors = [{name = "Euiseo Cha", email = "zeroday0619_dev@outlook.com"}]
maintainers = [{name = "Euiseo Cha", email = "zeroday0619_dev@outlook.com"}]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.10"
dynamic = ["version", "description"]
dependencies = [
"httpx>=0.23.0"
]
[project.optional-dependencies]
test = [
"pytest>=7.1.2",
"pytest-cov"
]
lint = [
"black>=22.3.0",
"flake8>=4.0.1",
"isort>=5.10.1",
"autoflake>=2.4.0",
"mypy>=0.961"
]
[project.urls]
Source = "https://github.com/Netchive/pydoppler-sdk"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
exclude = [
'^__init__\.py$', # TOML literal string (single-quotes, no escaping necessary)
"^__init__\\.py$", # TOML basic string (double-quotes, backslash and other characters need escaping)
]
[[tool.mypy.overrides]]
module = "pydoppler"