|
1 | 1 | #!/usr/bin/env python |
2 | 2 |
|
3 | | -#------------------------------------------------------------------------- |
4 | | -# Copyright (c) Microsoft. All rights reserved. |
5 | | -# |
6 | | -# Licensed under the Apache License, Version 2.0 (the "License"); |
7 | | -# you may not use this file except in compliance with the License. |
8 | | -# You may obtain a copy of the License at |
9 | | -# http://www.apache.org/licenses/LICENSE-2.0 |
10 | | -# |
11 | | -# Unless required by applicable law or agreed to in writing, software |
12 | | -# distributed under the License is distributed on an "AS IS" BASIS, |
13 | | -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 | | -# See the License for the specific language governing permissions and |
15 | | -# limitations under the License. |
16 | | -#-------------------------------------------------------------------------- |
| 3 | +# -------------------------------------------------------------------------------------------- |
| 4 | +# Copyright (c) Microsoft Corporation. All rights reserved. |
| 5 | +# Licensed under the MIT License. See License.txt in the project root for license information. |
| 6 | +# -------------------------------------------------------------------------------------------- |
17 | 7 |
|
18 | 8 | from setuptools import find_packages, setup |
19 | 9 | import sys |
|
43 | 33 | |
44 | 34 | url='https://github.com/Azure/azure-multiapi-storage-python', |
45 | 35 | classifiers=[ |
46 | | - 'Development Status :: 4 - Beta', |
| 36 | + 'Development Status :: 5 - Production/Stable', |
| 37 | + 'Intended Audience :: Developers', |
47 | 38 | 'Programming Language :: Python', |
48 | | - 'Programming Language :: Python :: 2', |
49 | | - 'Programming Language :: Python :: 2.7', |
50 | 39 | 'Programming Language :: Python :: 3', |
51 | | - 'Programming Language :: Python :: 3.3', |
52 | | - 'Programming Language :: Python :: 3.4', |
53 | | - 'Programming Language :: Python :: 3.5', |
54 | | - 'Programming Language :: Python :: 3.6', |
55 | | - 'Programming Language :: Python :: 3.7', |
56 | | - 'Programming Language :: Python :: 3.8', |
57 | | - 'License :: OSI Approved :: Apache Software License', |
| 40 | + 'Programming Language :: Python :: 3.9', |
| 41 | + 'Programming Language :: Python :: 3.10', |
| 42 | + 'Programming Language :: Python :: 3.11', |
| 43 | + 'Programming Language :: Python :: 3.12', |
| 44 | + 'License :: OSI Approved :: MIT License', |
58 | 45 | ], |
59 | 46 | zip_safe=False, |
60 | 47 | packages=find_packages(exclude=["azure"]), |
|
66 | 53 | "msrest>=0.6.18", |
67 | 54 | "cryptography>=2.1.4" |
68 | 55 | ], |
69 | | - extras_require={ |
70 | | - ':python_version=="2.7"': ['futures'], |
71 | | - ':python_version<"3.0"': ['azure-nspkg'], |
72 | | - }, |
| 56 | + python_requires=">=3.9.0" |
73 | 57 | ) |
0 commit comments