-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 882 Bytes
/
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
import os
from setuptools import setup
from setuptools import find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='aeropress',
version=open("aeropress/_version.py").readlines()[-1].split()[-1].strip("\"'"),
packages=find_packages(),
python_requires='>=3.5.2',
install_requires=[
'boto3>=1.26.137',
'PyYAML>=5',
],
include_package_data=True,
license='BSD License',
description='Helper for deploying Docker images to AWS ECS.',
long_description=README,
keywords='aws ecs deploy aeropress docker image container containerization',
url='https://github.com/muraty/aeropress',
author='Omer Murat Yildirim',
author_email='omermuratyildirim@gmail.com',
entry_points={
'console_scripts': [
'aeropress = aeropress.cli:main',
]
}
)