We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b451e commit c184776Copy full SHA for c184776
setup.py
@@ -11,6 +11,11 @@
11
long_description = readme.read()
12
13
14
+with open("requirements.txt") as requirements:
15
+ install_requires = requirements.read().split("\n")
16
+ install_requires = [x.strip() for x in install_requires if x.strip()]
17
+
18
19
def find_version(*file_paths):
20
import os
21
import re
@@ -42,6 +47,7 @@ def find_version(*file_paths):
42
47
download_url="https://github.com/jpetrucciani/{}.git".format(LIBRARY),
43
48
license="LICENSE",
44
49
packages=find_packages(),
50
+ install_requires=install_requires,
45
51
classifiers=[
46
52
"Programming Language :: Python :: 3",
53
"Programming Language :: Python :: 3.5",
0 commit comments