Skip to content

Commit 94a0b54

Browse files
Maksymilian Graczykmaksgraczyk
Maksymilian Graczyk
authored andcommitted
Add required dependencies to setup.py
1 parent fe8c7c5 commit 94a0b54

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
with open('README.md', 'r') as readme:
44
long_description = readme.read()
55

6+
reqs = []
7+
with open('requirements.txt', 'r') as requirements:
8+
for row in requirements:
9+
reqs.append(row)
10+
611
setuptools.setup(
712
name='joey',
813
version='pre1',
@@ -12,6 +17,7 @@
1217
long_description_content_type='text/markdown',
1318
url='https://github.com/devitocodes/joey',
1419
packages=setuptools.find_packages(),
20+
install_requires=reqs,
1521
classifiers=[
1622
'Programming Language :: Python :: 3'
1723
]

0 commit comments

Comments
 (0)