Skip to content

Commit

Permalink
Update pyproject.toml, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
romis2012 committed Nov 20, 2024
1 parent f829f49 commit 2c21ecc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 15 deletions.
2 changes: 1 addition & 1 deletion aiohttp_socks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = 'aiohttp-socks'
__version__ = '0.9.0'
__version__ = '0.9.1'

from python_socks import (
ProxyError,
Expand Down
43 changes: 29 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,48 @@ requires = ['setuptools']
build-backend = 'setuptools.build_meta'

[project]
name = 'aiohttp_socks'
license = {text = 'Apache-2.0'}
name = 'aiohttp_socks'
license = { text = 'Apache-2.0' }
description = 'Proxy connector for aiohttp'
readme = 'README.md'
authors = [{name = 'Roman Snegirev', email = '[email protected]'}]
keywords = [
'asyncio', 'aiohttp', 'socks', 'socks5', 'socks4', 'http', 'proxy'
]
readme = 'README.md'
authors = [{ name = 'Roman Snegirev', email = '[email protected]' }]
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',
]
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'
homepage = 'https://github.com/romis2012/aiohttp-socks'
repository = 'https://github.com/romis2012/aiohttp-socks'

[tool.setuptools.dynamic]
version = {attr = 'aiohttp_socks.__version__'}
version = { attr = 'aiohttp_socks.__version__' }

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

[tool.black]
line-length = 99
target-version = ['py37', 'py38', 'py39']
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
skip-string-normalization = true
preview = true
verbose = true
Expand Down

0 comments on commit 2c21ecc

Please sign in to comment.