setup.py 193 Bytes
Newer Older
chenzk's avatar
v1.0  
chenzk committed
1
2
3
4
5
6
7
8
9
10
from setuptools import setup

setup(
    name="dlimp-dataset-builder",
    python_requires=">=3.10",
    install_requires=[
        "tensorflow_datasets>=4.9.2",
        "tensorflow",
    ],
)