Skip to content
This repository has been archived by the owner on May 6, 2023. It is now read-only.

Commit

Permalink
chore: add package setup
Browse files Browse the repository at this point in the history
  • Loading branch information
AFAgarap committed Nov 2, 2020
1 parent d05babb commit 2ea0582
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from setuptools import setup

with open("requirements.txt", "r") as file:
requirements = file.read().splitlines()

setup(
name="pt-datasets",
version="0.1.0",
packages=["pt_datasets"],
url="https://github.com/AFAgarap/pt-datasets",
license="AGPL-3.0 License",
author="Abien Fred Agarap",
author_email="abienfred.agarap@gmail.com",
description="PyTorch dataset loader for MNIST, Fashion-MNIST, EMNIST-Balanced, CIFAR10, and SVHN datasets",
install_requires=requirements,
)

0 comments on commit 2ea0582

Please sign in to comment.