Skip to content

Commit 2c21ecc

Browse files
committed
Update pyproject.toml, bump version
1 parent f829f49 commit 2c21ecc

File tree

2 files changed

+30
-15
lines changed

2 files changed

+30
-15
lines changed

Diff for: aiohttp_socks/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = 'aiohttp-socks'
2-
__version__ = '0.9.0'
2+
__version__ = '0.9.1'
33

44
from python_socks import (
55
ProxyError,

Diff for: pyproject.toml

+29-14
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,48 @@ requires = ['setuptools']
33
build-backend = 'setuptools.build_meta'
44

55
[project]
6-
name = 'aiohttp_socks'
7-
license = {text = 'Apache-2.0'}
6+
name = 'aiohttp_socks'
7+
license = { text = 'Apache-2.0' }
88
description = 'Proxy connector for aiohttp'
9-
readme = 'README.md'
10-
authors = [{name = 'Roman Snegirev', email = '[email protected]'}]
11-
keywords = [
12-
'asyncio', 'aiohttp', 'socks', 'socks5', 'socks4', 'http', 'proxy'
13-
]
9+
readme = 'README.md'
10+
authors = [{ name = 'Roman Snegirev', email = '[email protected]' }]
11+
keywords = ['asyncio', 'aiohttp', 'socks', 'socks5', 'socks4', 'http', 'proxy']
1412
requires-python = ">=3.8.0"
15-
dependencies = [
16-
'aiohttp>=3.10.0',
17-
'python-socks[asyncio]>=2.4.3,<3.0.0',
18-
]
13+
dependencies = ['aiohttp>=3.10.0', 'python-socks[asyncio]>=2.4.3,<3.0.0']
1914
dynamic = ['version']
15+
classifiers = [
16+
"Development Status :: 4 - Beta",
17+
"Programming Language :: Python",
18+
"Programming Language :: Python :: 3",
19+
"Programming Language :: Python :: 3 :: Only",
20+
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
24+
"Programming Language :: Python :: 3.12",
25+
"Programming Language :: Python :: 3.13",
26+
"Operating System :: MacOS",
27+
"Operating System :: Microsoft",
28+
"Operating System :: POSIX :: Linux",
29+
"Topic :: Internet :: WWW/HTTP",
30+
"Intended Audience :: Developers",
31+
"Framework :: AsyncIO",
32+
"License :: OSI Approved :: Apache Software License",
33+
]
2034

2135
[project.urls]
22-
Homepage = 'https://github.com/romis2012/aiohttp-socks'
36+
homepage = 'https://github.com/romis2012/aiohttp-socks'
37+
repository = 'https://github.com/romis2012/aiohttp-socks'
2338

2439
[tool.setuptools.dynamic]
25-
version = {attr = 'aiohttp_socks.__version__'}
40+
version = { attr = 'aiohttp_socks.__version__' }
2641

2742
[tool.setuptools.packages.find]
2843
include = ['aiohttp_socks*']
2944

3045
[tool.black]
3146
line-length = 99
32-
target-version = ['py37', 'py38', 'py39']
47+
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
3348
skip-string-normalization = true
3449
preview = true
3550
verbose = true

0 commit comments

Comments
 (0)