-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (31 loc) · 870 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from pathlib import Path
from setuptools import find_packages, setup
SETUP_DIRECTORY = Path(__file__).resolve().parent
with (SETUP_DIRECTORY / "README.md").open() as ifs:
LONG_DESCRIPTION = ifs.read()
install_requires = (
[
"numpy>=1.23.3",
"pandas>=1.5.0",
"scipy>=1.9.1",
"lightfm>=1.16",
"scikit-learn>=1.1.2",
"matplotlib>=3.6.0",
"plotly>=5.10.0",
"implicit==0.6.2",
],
)
setup(
name="rsdiv",
version="0.2.7.1",
author="Yin Cheng",
author_email="[email protected]",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/smartnews/rsdiv",
python_requires=">=3.8",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=install_requires,
include_package_data=True,
)