forked from prestodb/presto-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·125 lines (111 loc) · 4.06 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
# This is necessary for nose to handle multiprocessing correctly
from multiprocessing import util # noqa
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from packaging.bdist_prestoadmin import bdist_prestoadmin
from release import release
# Import this from util instead of prestoadmin because prestoadmin has third
# party dependencies that can't be resolved by setup.py. Util should not.
from util import __version__
with open('README.md') as readme_file:
readme = readme_file.read()
# Requirements for both development and testing are duplicated here
# and in the requirements.txt. Unfortunately this is required by
# tox which relies on the existence of both.
# Note that argparse is special. We don't actually depend on argparse, but
# wheel does. If argparse exists in the system libraries, pip wheel won't
# package it up into the third-party directory, and the resulting dist-offline
# will fail to install if argparse isn't in the system python libraries.
requirements = [
'pycparser==2.18',
'argparse==1.4',
'paramiko==1.15.3',
'Fabric==1.10.1',
'requests==2.7.0',
'overrides==0.5',
'pip==8.1.2',
'setuptools==20.1.1',
'wheel==0.23.0',
'flake8==2.5.4',
'tox==1.9.2',
'retrying==1.3.3',
'pyjks==0.5.1'
]
test_requirements = [
'tox==1.9.2',
'nose==1.3.7',
'nose-timer==0.6',
'mock==1.0.1',
'wheel==0.23.0',
'docker-py==1.5.0',
'certifi==2015.4.28',
'fudge==1.1.0',
'PyYAML==3.11'
]
# =====================================================
# Welcome to HackLand! We monkey patch the _get_rc_file
# method of PyPIRCCommand so that we can read a .pypirc
# that is located in the current directory. This enables
# us to check it in with the code and not require
# developers to create files in their home directory.
from distutils.config import PyPIRCCommand # noqa
def get_custom_rc_file(self):
home_pypi = os.path.join(os.path.expanduser('~'),
'.pypirc')
local_pypi = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'.pypirc')
return local_pypi if os.path.exists(local_pypi) \
else home_pypi
PyPIRCCommand._get_rc_file = get_custom_rc_file
# Thank you for visiting HackLand!
# =====================================================
setup(
name='prestoadmin',
version=__version__,
description="Presto-admin installs, configures, and manages Presto " + \
"installations.",
long_description=readme,
author="PrestoDB Team",
url='https://github.com/prestodb/presto-admin',
packages=find_packages(exclude=['*tests*']),
package_dir={'prestoadmin':
'prestoadmin'},
package_data={'prestoadmin': ['presto-admin-logging.ini']},
include_package_data=True,
install_requires=requirements,
license="APLv2",
zip_safe=False,
keywords='prestoadmin',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
],
test_suite='tests',
tests_require=test_requirements,
cmdclass={'bdist_prestoadmin': bdist_prestoadmin,
'release': release},
entry_points={'console_scripts': ['presto-admin = prestoadmin.main:main']}
)