-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpyproject.toml
86 lines (79 loc) · 2.24 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
[project]
name = 'uplink'
version = '0.10.0a1'
description = 'A Declarative HTTP Client for Python.'
readme = 'README.md'
maintainers = [{ name = 'P. Raj Kumar', email = 'raj.pritvi.kumar@gmail.com' }]
authors = [
{ name = 'Kareem Moussa' },
{ name = 'Brandon Milton' },
{ name = 'Fabio Rosado' },
{ name = 'Niko Eckerskorn' },
{ name = 'Or Carmi' },
{ name = 'George Kontridze' },
{ name = 'Sean Chambers' },
{ name = 'Nils Philippsen' },
{ name = 'Alexander Duryagin' },
{ name = 'Sakorn Waungwiwatsin' },
{ name = 'Jacob Floyd' },
{ name = 'Guilherme Crocetti' },
{ name = 'Alexander Shadchin' },
{ name = 'Ernesto Avilés Vázquez' },
{ name = 'Leiser Fernández Gallo', email = 'leiserfg@gmail.com' },
]
license = { file = 'LICENSE' }
keywords = ['http', 'api', 'rest', 'client', 'retrofit']
urls = { Repository = 'https://github.com/prkumar/uplink' }
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
]
requires-python = '>=3.10'
dependencies = ['requests>=2.18.0', 'six>=1.13.0', 'uritemplate>=3.0.0']
[project.optional-dependencies]
marshmallow = ['marshmallow>=2.15.0']
pydantic = ['pydantic>=2.0.0']
aiohttp = ['aiohttp>=3.8.1']
twisted = ['twisted>=21.7.0']
[dependency-groups]
dev = [
'pytest',
'pytest-mock',
'pytest-cov',
'pytest-twisted',
'pytest-asyncio',
]
docs = [
'mkdocs',
'mkdocs-material',
'mkdocstrings[python]',
]
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[tool.pytest]
twisted=1
[tool.tox]
env_list = ["py310", "py311", "py312", "py313"]
[tool.tox.testenv]
runner = "uv-venv-lock-runner"
deps = [
"test",
"marshmallow",
"aiohttp",
"twisted",
"pydantic",
]
commands = [
"pytest tests --cov-config .coveragerc --cov=uplink {posargs}",
]