-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
89 lines (81 loc) · 2.05 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
[tool.poetry]
name = "pyuploadcare"
version = "6.0.0"
description = "Python library for Uploadcare.com"
authors = ["Uploadcare Inc <[email protected]>"]
readme = "README.md"
homepage = "https://uploadcare.com"
repository = "https://github.com/uploadcare/pyuploadcare"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/uploadcare/pyuploadcare/issues"
[tool.poetry.scripts]
ucare = 'pyuploadcare.ucare_cli.main:main'
[tool.poetry.dependencies]
python = "^3.8.1"
httpx = "^0.25.1"
pydantic = {extras = ["email"], version = "^2.5.2"}
python-dateutil = "^2.8.2"
pytz = "^2023.3.post1"
typing-extensions = "^4.9.0"
Django = {version = ">=2.2", optional = true}
[tool.poetry.extras]
django = ["Django"]
[tool.poetry.dev-dependencies]
pytest = "^7.4"
black = "^24.3.0"
isort = "^5.13.2"
flake8 = "^6.1.0"
mypy = "^1.7.1"
flake8-print = "^5.0.0"
pytest-vcr = "^1.0.2"
vcrpy = "^5.1.0"
yarl = "^1.9.4"
Django = "^4.2.8"
coverage = "^7.3.3"
pytest-cov = "^4.1.0"
python-coveralls = "^2.9.3"
types-python-dateutil = "^2.8.19.14"
types-pytz = "^2023.3.1.1"
Sphinx = "^7.1.2"
sphinx-argparse = "^0.4.0"
types-dataclasses = "^0.6.6"
pytest-freezer = "^0.4.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
target-version = ['py38']
exclude = '''
(
\.eggs
|\.git
|\.hg
|\.mypy_cache
|\.nox
|\.tox
|\.venv
|_build
|buck-out
|build
|dist
)
'''
[tool.isort]
line_length = 79
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
multi_line_output = 3
src_paths = "pyuploadcare"
include_trailing_comma = "true"
lines_after_imports = 2