Skip to content

Commit

Permalink
Add INSTALL_REQUIRES
Browse files Browse the repository at this point in the history
  • Loading branch information
wq2012 committed Sep 25, 2024
1 parent 9de473b commit f00d5d7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@

import setuptools

VERSION = "0.2.21"
VERSION = "0.2.22"

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

with open("requirements.txt") as file_object:
INSTALL_REQUIRES = file_object.read().splitlines()

setuptools.setup(
name="spectralcluster",
version=VERSION,
Expand All @@ -22,4 +25,5 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=INSTALL_REQUIRES,
)

0 comments on commit f00d5d7

Please sign in to comment.