|
1 | 1 | #!/usr/bin/env python |
2 | 2 |
|
3 | 3 | from setuptools import setup |
4 | | - |
5 | | -if __name__ == '__main__': |
6 | | - |
7 | | - setup( |
8 | | - name='localstack-client', |
9 | | - version='1.29', |
10 | | - description='A lightweight Python client for LocalStack.', |
11 | | - author='LocalStack Team', |
12 | | - author_email='info@localstack.cloud', |
13 | | - url='https://github.com/localstack/localstack-python-client', |
14 | | - packages=['localstack_client'], |
15 | | - package_data={}, |
16 | | - data_files={}, |
17 | | - install_requires=["boto3"], |
18 | | - license="Apache License 2.0", |
19 | | - classifiers=[ |
20 | | - "Programming Language :: Python :: 2", |
21 | | - "Programming Language :: Python :: 2.6", |
22 | | - "Programming Language :: Python :: 2.7", |
23 | | - "Programming Language :: Python :: 3", |
24 | | - "Programming Language :: Python :: 3.3", |
25 | | - 'Programming Language :: Python :: 3.4', |
26 | | - 'Programming Language :: Python :: 3.6', |
27 | | - 'Programming Language :: Python :: 3.7', |
28 | | - 'Programming Language :: Python :: 3.8', |
29 | | - 'Programming Language :: Python :: 3.9', |
30 | | - "License :: OSI Approved :: Apache Software License", |
31 | | - "Topic :: Software Development :: Testing", |
32 | | - ] |
33 | | - ) |
| 4 | +setup() |
0 commit comments