We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91137a7 commit 217e206Copy full SHA for 217e206
1 file changed
setup.py
@@ -1,8 +1,17 @@
1
+import re
2
import setuptools
3
4
with open("README.md", "r", encoding="utf-8") as fh:
5
long_description = fh.read()
6
7
+install_req = []
8
+with open('requirements.txt') as f:
9
+ requirements = f.read()
10
+
11
+for line in re.split('\n', requirements):
12
+ install_req.append(line)
13
14
15
setuptools.setup(
16
name="localstack-utils",
17
description='An easy way to inclute Localstack with unit tests',
@@ -25,4 +34,5 @@
25
34
package_dir={"": "localstack_utils"},
26
35
packages=setuptools.find_packages(where="localstack_utils"),
27
36
python_requires=">=3.6",
37
+ install_requires=install_req
28
38
)
0 commit comments