forked from caltechads/deployfish
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (35 loc) · 1.17 KB
/
setup.py
File metadata and controls
executable file
·38 lines (35 loc) · 1.17 KB
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
#!/usr/bin/env python
import os.path
from deployfish import __version__
from setuptools import setup, find_packages # @UnresolvedImport
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name="deployfish",
version=__version__,
description="AWS ECS related deployment tools",
author="Caltech IMSS ADS",
author_email="imss-ads-staff@caltech.edu",
url="https://github.com/caltechads/deployfish",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=['aws', 'ecs', 'docker', 'devops'],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3"
],
packages=find_packages(),
include_package_data=True,
install_requires=[
"boto3 >= 1.7.55",
"botocore >= 1.10.55",
"click >= 6.7",
"docker >= 4.0.2",
"PyYAML == 6.0.1", # "PyYAML >=5.4,<6.0",
"tzlocal >= 1.4",
"requests >= 2.18.4"
],
entry_points={'console_scripts': [
'deploy = deployfish.dplycli:main',
'dpy = deployfish.dplycli:main'
]}
)