-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop Python 3.6, use declarative setup
- Loading branch information
Showing
4 changed files
with
54 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,50 @@ | ||
[aliases] | ||
test = pytest | ||
|
||
[metadata] | ||
name = aiosignal | ||
version = attr: aiosignal.__version__ | ||
url = https://github.com/aio-libs/aiosignal | ||
project_urls = | ||
Chat: Gitter = https://gitter.im/aio-libs/Lobby | ||
CI: GitHub Actions = https://github.com/aio-libs/aiosignal/actions | ||
Coverage: codecov = https://codecov.io/github/aio-libs/aiosignal | ||
Docs: RTD = https://docs.aiosignal.org | ||
GitHub: issues = https://github.com/aio-libs/aiosignal/issues | ||
GitHub: repo = https://github.com/aio-libs/aiosignal | ||
description = aiosignal: a list of registered asynchronous callbacks | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
maintainer = aiohttp team <[email protected]> | ||
maintainer_email = [email protected] | ||
license = Apache 2.0 | ||
license_file = LICENSE | ||
classifiers = | ||
License :: OSI Approved :: Apache Software License | ||
|
||
Intended Audience :: Developers | ||
|
||
Programming Language :: Python", | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Development Status :: 5 - Production/Stable | ||
Operating System :: POSIX | ||
Operating System :: MacOS :: MacOS X | ||
Operating System :: Microsoft :: Windows | ||
Framework :: AsyncIO | ||
[options] | ||
python_requires = >=3.7 | ||
packages = find: | ||
include_package_data = True | ||
install_requires = | ||
frozenlist >= 1.1.0 | ||
[pep8] | ||
max-line-length=79 | ||
max-line-length=88 | ||
[easy_install] | ||
zip_ok = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,5 @@ | ||
import pathlib | ||
import re | ||
import sys | ||
|
||
from setuptools import setup | ||
|
||
if sys.version_info < (3, 6): | ||
raise RuntimeError("aiosignal 1.x requires Python 3.6+") | ||
|
||
|
||
here = pathlib.Path(__file__).parent | ||
|
||
|
||
txt = (here / "aiosignal" / "__init__.py").read_text("utf-8") | ||
try: | ||
version = re.findall(r'^__version__ = "([^"]+)"\r?$', txt, re.M)[0] | ||
except IndexError: | ||
raise RuntimeError("Unable to determine version.") | ||
|
||
install_requires = [ | ||
"frozenlist>=1.1.0", | ||
] | ||
|
||
|
||
def read(f): | ||
return (here / f).read_text("utf-8").strip() | ||
|
||
|
||
args = dict( | ||
name="aiosignal", | ||
version=version, | ||
description="aiosignal: a list of registered asynchronous callbacks", | ||
long_description="\n\n".join((read("README.rst"), read("CHANGES.rst"))), | ||
long_description_content_type="text/x-rst", | ||
classifiers=[ | ||
"License :: OSI Approved :: Apache Software License", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Development Status :: 5 - Production/Stable", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Framework :: AsyncIO", | ||
], | ||
author="Nikolay Kim", | ||
author_email="[email protected]", | ||
maintainer="Martijn Pieters <[email protected]>", | ||
maintainer_email="[email protected]", | ||
url="https://github.com/aio-libs/aiosignal", | ||
project_urls={ | ||
"Chat: Gitter": "https://gitter.im/aio-libs/Lobby", | ||
"CI: GitHub Actions": "https://github.com/aio-libs/aiosignal/actions", | ||
"Coverage: codecov": "https://codecov.io/github/aio-libs/aiosignal", | ||
"Docs: RTD": "https://docs.aiosignal.org", | ||
"GitHub: issues": "https://github.com/aio-libs/aiosignal/issues", | ||
"GitHub: repo": "https://github.com/aio-libs/aiosignal", | ||
}, | ||
license="Apache 2", | ||
packages=["aiosignal"], | ||
python_requires=">=3.6", | ||
install_requires=install_requires, | ||
include_package_data=True, | ||
) | ||
|
||
setup(**args) | ||
if __name__ == "__main__": | ||
setup() |