-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.38 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.38 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
from setuptools import setup, find_packages
setup(
name='movie_lens_tfx',
version='0.1.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==10.0.1",
"apache-beam==2.59.0",
"numpy==1.26.4",
"tensorflow==2.16.1",
"tensorflow-transform==1.16.0",
"tfx==1.16.0",
"tensorflow-data-validation==1.16.1",
"tensorflow-metadata==1.16.1",
"ml-metadata==1.16.0",
"python-snappy==0.7.3",
"pandas==1.5.3",
"array-record==0.5.0",
"array_record_beam_sdk==0.1.0"
],
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.10 :: 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'
)