Skip to content

Commit f00d5d7

Browse files
committed
Add INSTALL_REQUIRES
1 parent 9de473b commit f00d5d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22

33
import setuptools
44

5-
VERSION = "0.2.21"
5+
VERSION = "0.2.22"
66

77
with open("README.md", "r") as file_object:
88
LONG_DESCRIPTION = file_object.read()
99

10+
with open("requirements.txt") as file_object:
11+
INSTALL_REQUIRES = file_object.read().splitlines()
12+
1013
setuptools.setup(
1114
name="spectralcluster",
1215
version=VERSION,
@@ -22,4 +25,5 @@
2225
"License :: OSI Approved :: Apache Software License",
2326
"Operating System :: OS Independent",
2427
],
28+
install_requires=INSTALL_REQUIRES,
2529
)

0 commit comments

Comments
 (0)