There was an error while loading. Please reload this page.
2 parents ae4af23 + a9aae8c commit 067666cCopy full SHA for 067666c
3 files changed
MANIFEST.in
@@ -0,0 +1 @@
1
+include requirements.txt
ecs_deploy/__init__.py
@@ -1 +1 @@
-VERSION = '1.16.2'
+VERSION = '1.16.3'
setup.py
@@ -1,18 +1,21 @@
"""
2
Simplify AWS ECS deployments
3
4
+from pathlib import Path
5
from setuptools import find_packages, setup
6
7
from ecs_deploy import VERSION
8
9
+BASE_DIR = Path(__file__).parent
10
+
11
12
def readme():
- with open('README.rst') as f:
13
+ with open(BASE_DIR / 'README.rst') as f:
14
return f.read()
15
16
17
def requirements():
- with open('requirements.txt') as f:
18
+ with open(BASE_DIR / 'requirements.txt') as f:
19
return [
20
line.strip()
21
for line in f
0 commit comments