-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
38 lines (32 loc) · 923 Bytes
/
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
[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']
[project.urls]
Homepage = '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 = ['py37', 'py38', 'py39']
skip-string-normalization = true
preview = true
verbose = true
[tool.pytest.ini_options]
asyncio_mode = 'strict'