Skip to content

Commit

Permalink
Release v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
luozhouyang committed Nov 19, 2021
1 parent fc035cd commit f09917d
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
tensorflow-cpu
tensorflow
tokenizers
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="smile-datasets",
version="0.0.1",
description="La**S**t **mile** datasets: Use `tf.data` to solve the last mile data loading problem for tensorflow.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/luozhouyang/smile-datasets",
author="ZhouYang Luo",
author_email="[email protected]",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
"tokenizers",
"tensorflow",
],
extras_require={},
license="Apache Software License",
classifiers=(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
),
)
10 changes: 10 additions & 0 deletions smile_datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import logging

from smile_datasets.qa.dataset import DatapipeForQuestionAnswering, DatasetForQuestionAnswering
from smile_datasets.qa.example import ExampleForQuestionAnswering
from smile_datasets.qa.parsers import ParserForQuestionAnswering

__name__ = "smile_datasets"
__version__ = "0.0.1"

logging.basicConfig(format="%(asctime)s %(levelname)7s %(filename)20s %(lineno)4d] %(message)s", level=logging.INFO)

0 comments on commit f09917d

Please sign in to comment.