We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03e6613 commit 1dcb1c3Copy full SHA for 1dcb1c3
setup.py
@@ -1,5 +1,9 @@
1
+import os
2
import setuptools
3
4
+with open('requirements.txt') as f:
5
+ required = f.read().splitlines()
6
+
7
with open("README.md", "r") as fh:
8
long_description = fh.read()
9
@@ -13,6 +17,7 @@
13
17
long_description_content_type="text/markdown",
14
18
url="https://github.com/PythonBenin/kkiapay-python",
15
19
packages=setuptools.find_packages(),
20
+ install_requires=required,
16
21
classifiers=[
22
"Programming Language :: Python :: 3",
23
"License :: OSI Approved :: MIT License",
0 commit comments