-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (57 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
from __future__ import with_statement
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
from umobj import __version__
long_description = "Command-line utilities for S3-compatible Object Storage"
install_requires = [
'boto >= 2.49.0',
'filechunkio',
'progressbar',
'qav',
'bagit >= 1.7.0',
'certifi >= 2019.11.28',
]
if sys.version_info <= (2, 6):
errormsg = "ERROR: umobj requires Python Version 2.7 or above... Exiting.\n"
sys.stderr.write(errormsg)
sys.exit(1)
setup(name="umobj",
version=__version__,
description="UMIACS Object Storage Commands",
long_description=long_description,
author="UMIACS Staff",
author_email="[email protected]",
scripts=[
"bin/bagobj",
"bin/catobj",
"bin/chobj",
"bin/cmpobj",
"bin/cpobj",
"bin/lsobj",
"bin/mkobj",
"bin/mvobj",
"bin/rmobj",
"bin/syncobj",
"bin/streamobj",
"bin/webobj",
],
url="https://github.com/UMIACS/umobj",
packages=["umobj"],
install_requires=install_requires,
license="LGPL v2.1",
platforms="Posix; MacOS X; Windows",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Topic :: Internet",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)