-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
50 lines (45 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
#!/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 = """
tarcats tarproc tarshow tarsort tarsplit tarpcat
lines2tar tar2json
""".split()
PREREQS = """
future
msgpack
braceexpand
simplejson
pyzmq
numpy
pyyaml
""".split()
setuptools.setup(
name='tarproc',
version="0.0.11",
description="Big data data processing for tar archives.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="http://github.com/tmbdev/tarproc",
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"
],
keywords="POSIX tar, map reduce, object store, deep learning",
packages=["tarproclib"],
python_requires=">=3.6",
scripts=SCRIPTS,
install_requires=PREREQS,
)