-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (46 loc) · 1.81 KB
/
setup.py
File metadata and controls
51 lines (46 loc) · 1.81 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
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup
import os
with open("./VERSION") as version_file:
PINNED_VERSION=version_file.read().strip()
def get_long_description():
with open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
encoding="utf8",
) as fp:
return fp.read()
setup(
name="croudtech-ecs-tools",
description="Tools for managing ECS Services and Tasks",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Jim Robinson",
url="https://github.com/CroudTech/croudtech-ecs-tools",
project_urls={
"Issues": "https://github.com/CroudTech/croudtech-ecs-tools/issues",
"CI": "https://github.com/CroudTech/croudtech-ecs-tools/actions",
"Changelog": "https://github.com/CroudTech/croudtech-ecs-tools/releases",
},
license="Apache License, Version 2.0",
version=PINNED_VERSION,
packages=["croudtech_ecs_tools"],
entry_points="""
[console_scripts]
croudtech-ecs-tools=croudtech_ecs_tools.cli:cli
""",
setup_requires=["setuptools_scm"],
include_package_data=True,
install_requires=[
"boto3==1.20.28",
"botocore==1.23.28; python_version >= '3.6'",
"click==8.0.3",
"jmespath==0.10.0; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"python-dateutil==2.8.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"s3transfer==0.5.0; python_version >= '3.6'",
"six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"urllib3==1.26.7; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
],
extras_require={
"test": ["pytest"]
},
python_requires=">=3.8",
)