Skip to content

Commit 067666c

Browse files
committed
Merge branch 'hotfix/1.16.3'
2 parents ae4af23 + a9aae8c commit 067666c

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include requirements.txt

ecs_deploy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.16.2'
1+
VERSION = '1.16.3'

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
"""
22
Simplify AWS ECS deployments
33
"""
4+
from pathlib import Path
45
from setuptools import find_packages, setup
56

67
from ecs_deploy import VERSION
78

9+
BASE_DIR = Path(__file__).parent
10+
811

912
def readme():
10-
with open('README.rst') as f:
13+
with open(BASE_DIR / 'README.rst') as f:
1114
return f.read()
1215

1316

1417
def requirements():
15-
with open('requirements.txt') as f:
18+
with open(BASE_DIR / 'requirements.txt') as f:
1619
return [
1720
line.strip()
1821
for line in f

0 commit comments

Comments
 (0)