-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.43 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (40 loc) · 1.43 KB
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
from setuptools import setup, find_packages
setup(
name='movie_lens_tfx',
version='0.2.0',
packages=find_packages(where="src/main/python",
include=['movie_lens_tfx', 'movie_lens_tfx.misc',
'movie_lens_tfx.utils', 'movie_lens_tfx.ingest_component',
'movie_lens_tfx.ingest_pyfunc_component',
'movie_lens_tfx.ingest_already_split_pyfunc_component',
'movie_lens_tfx.bulk_infer_component', 'movie_lens_tfx']),
package_dir={'': 'src/main/python'},
install_requires = [
"pyarrow==18.1.0",
"apache-beam==2.73.0",
"numpy==2.1.0",
"tensorflow==2.21.0",
"tensorflow-transform==1.21.0",
"tfx==1.21.0",
"tensorflow-data-validation==1.21.0",
"tensorflow-metadata==1.21.0",
"ml-metadata==1.21.0",
"python-snappy==0.7.3",
"pandas==2.2.3",
"array-record==0.8.3",
"msgpack==1.2.1",
"tensorboard==2.21.0",
"build==1.4.0",
"tomli-2.2.1",
],
extras_require={"test": ["pytest", "nannyml>=0.13.1","polars>=1.35.2", "plotly>=6.4.0", "kaleido>=1.2.0"]},
classifiers=[ 'Natural Language :: English',
'Programming Language :: Python :: 3.13 :: Only',
'Development Status :: 1 - Development/Unstable'
],
url='https://www.kaggle.com/code/nicholeasuniquename/recommender-systems-with-tfx-pipelines',
license='MIT',
author='Nichole King',
author_email='',
description='TFX pipelines for Kaggle recommender systems project'
)