|
3 | 3 | import os.path |
4 | 4 | import re |
5 | 5 |
|
6 | | -from setuptools import find_packages, setup |
| 6 | +from setuptools import find_namespace_packages, setup |
7 | 7 |
|
8 | 8 | here = os.path.abspath(os.path.dirname(__file__)) |
9 | 9 |
|
@@ -44,22 +44,21 @@ def find_version(*file_paths): |
44 | 44 | author='Amazon Web Services', |
45 | 45 | url='https://github.com/boto/botocore', |
46 | 46 | scripts=[], |
47 | | - packages=find_packages(exclude=['tests*']), |
| 47 | + packages=find_namespace_packages(exclude=['tests*']), |
48 | 48 | package_data={ |
49 | 49 | 'botocore': ['cacert.pem', 'data/*.json', 'data/*/*.json'], |
50 | 50 | 'botocore.vendored.requests': ['*.pem'], |
51 | 51 | }, |
52 | 52 | include_package_data=True, |
53 | 53 | install_requires=requires, |
54 | 54 | extras_require=extras_require, |
55 | | - license="Apache License 2.0", |
| 55 | + license="Apache-2.0", |
56 | 56 | python_requires=">= 3.9", |
57 | 57 | classifiers=[ |
58 | 58 | 'Development Status :: 5 - Production/Stable', |
59 | 59 | 'Intended Audience :: Developers', |
60 | 60 | 'Intended Audience :: System Administrators', |
61 | 61 | 'Natural Language :: English', |
62 | | - 'License :: OSI Approved :: Apache Software License', |
63 | 62 | 'Programming Language :: Python', |
64 | 63 | 'Programming Language :: Python :: 3 :: Only', |
65 | 64 | 'Programming Language :: Python :: 3', |
|
0 commit comments