forked from webdataset/webdataset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.23 KB
/
setup.py
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
39
40
41
#!/usr/bin/python3
#
# Copyright (c) 2017-2019 NVIDIA CORPORATION. All rights reserved.
# This file is part of webloader (see TBD).
# See the LICENSE file for licensing terms (BSD-style).
#
import sys
import setuptools
if sys.version_info < (3, 6):
sys.exit("Python versions less than 3.6 are not supported")
scripts = []
setuptools.setup(
name="webdataset",
version = "0.2.30",
description="Record sequential storage for deep learning.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
# url="http://github.com/tmbdev/webdataset",
url="http://github.com/webdataset/webdataset",
author="Thomas Breuel",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="object store, client, deep learning",
packages=["webdataset"],
python_requires=">=3.6",
scripts=scripts,
install_requires="braceexpand numpy pyyaml".split(),
)