-
-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1160 from jakob-keller/modern-packaging
Modernize build configuration
- Loading branch information
Showing
7 changed files
with
98 additions
and
88 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 was deleted.
Oops, something went wrong.
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,70 +1,3 @@ | ||
import os | ||
import re | ||
from setuptools import setup | ||
|
||
from setuptools import find_packages, setup | ||
|
||
# NOTE: If updating requirements make sure to also check Pipfile for any locks | ||
# NOTE: When updating botocore make sure to update awscli/boto3 versions below | ||
install_requires = [ | ||
# pegged to also match items in `extras_require` | ||
'botocore>=1.34.70,<1.34.163', | ||
'aiohttp>=3.9.2,<4.0.0', | ||
'wrapt>=1.10.10, <2.0.0', | ||
'aioitertools>=0.5.1,<1.0.0', | ||
] | ||
|
||
extras_require = { | ||
'awscli': ['awscli>=1.32.70,<1.33.45'], | ||
'boto3': ['boto3>=1.34.70,<1.34.163'], | ||
} | ||
|
||
|
||
def read(f): | ||
return open(os.path.join(os.path.dirname(__file__), f)).read().strip() | ||
|
||
|
||
def read_version(): | ||
regexp = re.compile(r"^__version__\W*=\W*'([\d.abrc]+)'") | ||
init_py = os.path.join( | ||
os.path.dirname(__file__), 'aiobotocore', '__init__.py' | ||
) | ||
with open(init_py) as f: | ||
for line in f: | ||
match = regexp.match(line) | ||
if match is not None: | ||
return match.group(1) | ||
raise RuntimeError('Cannot find version in aiobotocore/__init__.py') | ||
|
||
|
||
setup( | ||
name='aiobotocore', | ||
version=read_version(), | ||
description='Async client for aws services using botocore and aiohttp', | ||
long_description='\n\n'.join((read('README.rst'), read('CHANGES.rst'))), | ||
long_description_content_type='text/x-rst', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Natural Language :: English', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 3', | ||
'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', | ||
'Environment :: Web Environment', | ||
'Framework :: AsyncIO', | ||
], | ||
author="Nikolay Novik", | ||
author_email="nickolainovik@gmail.com", | ||
url='https://github.com/aio-libs/aiobotocore', | ||
download_url='https://pypi.python.org/pypi/aiobotocore', | ||
license='Apache License 2.0', | ||
packages=find_packages(include=['aiobotocore']), | ||
python_requires='>=3.8', | ||
install_requires=install_requires, | ||
extras_require=extras_require, | ||
include_package_data=True, | ||
) | ||
setup() |
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