forked from wal-e/wal-e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·68 lines (56 loc) · 1.95 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
66
67
68
#!/usr/bin/env python
import os.path
import sys
# Version file managment scheme and graceful degredation for
# setuptools borrowed and adapted from GitPython.
try:
from setuptools import setup, find_packages
# Silence pyflakes
assert setup
assert find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
if sys.version_info < (3, 4):
raise RuntimeError('Python versions < 3.4 are not supported.')
# Utility function to read the contents of short files.
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
VERSION = read(os.path.join('wal_e', 'VERSION')).strip()
setup(
name="wal-e",
version=VERSION,
packages=find_packages(),
install_requires=['gevent>=1.1.1'],
extras_require={
'aws': ['boto>=2.40.0'],
'azure': ['azure==3.0.0'],
'google': ['google-cloud-storage>=1.4.0'],
'swift': ['python-swiftclient>=3.0.0',
'python-keystoneclient>=3.0.0']
},
# metadata for upload to PyPI
author="The WAL-E Contributors",
author_email="[email protected]",
maintainer="Daniel Farina",
maintainer_email="[email protected]",
description="Continuous Archiving for Postgres",
long_description=read('README.rst'),
classifiers=[
'Topic :: Database',
'Topic :: System :: Archiving',
'Topic :: System :: Recovery Tools',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
platforms=['any'],
license="BSD",
keywords=("postgres postgresql database backup archive archiving s3 aws "
"openstack swift wabs azure google gce gcs wal shipping"),
url="https://github.com/wal-e/wal-e",
# Include the VERSION file
package_data={'wal_e': ['VERSION']},
# install
entry_points={'console_scripts': ['wal-e=wal_e.cmd:main']})