-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
38 lines (33 loc) · 1.13 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
#!/usr/bin/python3
# Copyright (c) 2017 NVIDIA CORPORATION. All rights reserved.
# 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")
VERSION = "0.1.0"
SCRIPTS = (
"tensorshow tensorstat tensormon serve-imagenet-dir serve-imagenet-shards".split()
)
setuptools.setup(
author="Thomas Breuel",
author_email="[email protected]",
description="Distributed preprocessing for deep learning.",
install_requires="webdataset pyzmq msgpack torch".split(),
keywords="object store, client, deep learning",
license="MIT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
name="tensorcom",
packages=["tensorcom"],
python_requires=">=3.6",
scripts=SCRIPTS,
url="http://github.com/tmbdev/tensorcom",
version=VERSION,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)