Skip to content

Commit

Permalink
add requirements (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
yinsn authored Jul 13, 2022
1 parent 8c3cc1f commit 01c32c5
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,20 @@
with (SETUP_DIRECTORY / "README.md").open() as ifs:
LONG_DESCRIPTION = ifs.read()

install_requires = (
[
"numpy>=1.23.1",
"pandas>=1.4.3",
"scipy>=1.8.1",
"lightfm>=1.16",
"scikit-learn>=1.1.1",
"matplotlib>=3.5.2",
],
)

setup(
name="rsdiv",
version="0.1.6",
version="0.1.7",
author="Yin Cheng",
author_email="[email protected]",
long_description=LONG_DESCRIPTION,
Expand All @@ -19,5 +29,6 @@
python_requires=">=3.6",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=install_requires,
include_package_data=True,
)

0 comments on commit 01c32c5

Please sign in to comment.