-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·44 lines (41 loc) · 1.52 KB
/
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
37
38
39
40
41
42
43
44
# pylint: disable=line-too-long, invalid-name, missing-docstring
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="rec_tool",
version="1.0.0",
author="Eugene Ilyushin",
author_email="eugene.ilyushin@gmail.com",
description="The package helps to perform experiments with collaborative filtering models. It contains accessible datasets, metrics, and, moreover can save results in a database for future analysis.",
long_description="The package helps to perform experiments with collaborative filtering models. It contains accessible datasets, metrics, and, moreover can save results in a database for future analysis.",
long_description_content_type="text/markdown",
url="https://github.com/Ilyushin/rec-tool",
packages=setuptools.find_packages(),
package_dir={
'rec_tool': 'rec_tool',
'rec_tool.common': 'rec_tool/common',
'rec_tool.models': 'rec_tool/models',
'rec_tool.transformations': 'rec_tool/transformations',
'rec_tool.ml_flow': 'rec_tool/ml_flow',
},
entry_points={
'console_scripts': [
'rec_tool=rec_tool.main:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'tensorflow',
'pylint',
'signal-transformation',
'pyyaml',
'pandas',
'mlflow',
'tqdm'
],
)