|
7 | 7 | import platform
|
8 | 8 | from subprocess import check_call, check_output
|
9 | 9 | from setuptools import Extension, find_packages, setup
|
10 |
| -from awslambdaric import __version__ |
11 | 10 |
|
12 | 11 |
|
13 | 12 | def get_curl_extra_linker_flags():
|
@@ -68,33 +67,10 @@ def read_requirements(req="base.txt"):
|
68 | 67 |
|
69 | 68 |
|
70 | 69 | setup(
|
71 |
| - name="awslambdaric", |
72 |
| - version=__version__, |
73 |
| - author="Amazon Web Services", |
74 |
| - description="AWS Lambda Runtime Interface Client for Python", |
75 |
| - long_description=read("README.md"), |
76 |
| - long_description_content_type="text/markdown", |
77 |
| - url="https://github.com/aws/aws-lambda-python-runtime-interface-client", |
78 | 70 | packages=find_packages(
|
79 | 71 | exclude=("tests", "tests.*", "docs", "examples", "versions")
|
80 | 72 | ),
|
81 | 73 | install_requires=read_requirements("base.txt"),
|
82 |
| - classifiers=[ |
83 |
| - "Development Status :: 5 - Production/Stable", |
84 |
| - "Intended Audience :: Developers", |
85 |
| - "Natural Language :: English", |
86 |
| - "Programming Language :: Python :: 3", |
87 |
| - "Programming Language :: Python :: 3.6", |
88 |
| - "Programming Language :: Python :: 3.7", |
89 |
| - "Programming Language :: Python :: 3.8", |
90 |
| - "Programming Language :: Python :: 3.9", |
91 |
| - "Programming Language :: Python :: 3.10", |
92 |
| - "Programming Language :: Python :: 3.11", |
93 |
| - "Programming Language :: Python :: 3.12", |
94 |
| - "License :: OSI Approved :: Apache Software License", |
95 |
| - "Operating System :: OS Independent", |
96 |
| - ], |
97 |
| - python_requires=">=3.6", |
98 | 74 | ext_modules=get_runtime_client_extension(),
|
99 | 75 | test_suite="tests",
|
100 | 76 | )
|
0 commit comments