-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""Dynamic configuration for setuptools."""
import os
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
with open(os.path.join('wait4localstack', 'VERSION')) as version_file:
version = version_file.read().strip()
setuptools.setup(
name='wait4localstack',
version=version,
author='League of Crafty Programmers Ltd.',
author_email='[email protected]',
description='Python utilities for ensuring that localstack has fully started.',
entry_points={
'console_scripts': ['wait4localstack=wait4localstack:main']
},
install_requires=['urllib3>=1.26.0'],
keywords='localstack',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/locp/wait4localstack',
package_data={
'': ['VERSION']
},
project_urls={
'Bug Tracker': 'https://github.com/locp/wait4localstack/issues',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
],
package_dir={'': '.'},
packages=setuptools.find_packages(where='.'),
python_requires='>=3.6')