-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (32 loc) · 1001 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "s3datasets"
version = "2.1.1"
authors = [
{ name="Steve Madere", email="[email protected]" },
]
description = "Lazy-loading HF Datasets sourced from AWS S3 buckets and a chunking text document tokenizer."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dependencies=[
'datasets',
'boto3',
'typing; python_version<"3.5"',
'diskcache',
'transformers',
'torch'
]
[project.urls]
Homepage = "https://github.com/stevemadere/s3-datasets"
Issues = "https://github.com/stevemadere/s3-datasets/issues"