Skip to content

Commit 1dcb1c3

Browse files
committed
add package dependencies
1 parent 03e6613 commit 1dcb1c3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
import os
12
import setuptools
23

4+
with open('requirements.txt') as f:
5+
required = f.read().splitlines()
6+
37
with open("README.md", "r") as fh:
48
long_description = fh.read()
59

@@ -13,6 +17,7 @@
1317
long_description_content_type="text/markdown",
1418
url="https://github.com/PythonBenin/kkiapay-python",
1519
packages=setuptools.find_packages(),
20+
install_requires=required,
1621
classifiers=[
1722
"Programming Language :: Python :: 3",
1823
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)