forked from romis2012/aiohttp-socks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.66 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'aiohttp_socks'
license = { text = 'Apache-2.0' }
description = 'Proxy connector for aiohttp'
readme = 'README.md'
authors = [{ name = 'Roman Snegirev', email = 'snegiryev@gmail.com' }]
keywords = ['asyncio', 'aiohttp', 'socks', 'socks5', 'socks4', 'http', 'proxy']
requires-python = ">=3.8.0"
dependencies = ['aiohttp>=3.10.0', 'python-socks[asyncio]>=2.4.3,<3.0.0']
dynamic = ['version']
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Topic :: Internet :: WWW/HTTP",
"Intended Audience :: Developers",
"Framework :: AsyncIO",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
homepage = 'https://github.com/romis2012/aiohttp-socks'
repository = 'https://github.com/romis2012/aiohttp-socks'
[tool.setuptools.dynamic]
version = { attr = 'aiohttp_socks.__version__' }
[tool.setuptools.packages.find]
include = ['aiohttp_socks*']
[tool.black]
line-length = 99
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
skip-string-normalization = true
preview = true
verbose = true
[tool.pytest.ini_options]
asyncio_mode = 'strict'