forked from BROADSoftware/HADeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
84 lines (79 loc) · 2.57 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
# Copyright (C) 2017 BROADSoftware
#
# This file is part of HADeploy
#
# HADeploy is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# HADeploy is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with HADeploy. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(
name="HADeploy",
description="An Hadoop Application deployment tool",
long_description=readme,
url="https://github.com/BROADSoftware/hadeploy",
version="0.6.2",
license="GPLv3",
author="BROADSoftware",
author_email="[email protected]",
package_dir={ '': 'lib' },
packages=[ 'hadeploy', 'hadeploy.core', 'hadeploy.plugins' ],
package_data={
'hadeploy.core': [
'master/*.*',
'templates/*.*',
'conf/*.*'
],
'hadeploy.plugins': [
'*/*.*',
'*/*/*.*',
'*/*/*/*.*',
'*/*/*/*/*.*'
]
},
exclude_package_data={
'hadeploy.core': [
'master/*.pyc'
],
'hadeploy.plugins': [
'*/*.pyc',
'*/*/*.pyc',
'*/*/*/*.pyc',
'*/*/*/*/*.pyc'
]
},
install_requires=[
'ansible >= 2.3.0.0',
'pykwalify >= 1.6.0'
],
scripts=[ 'bin/hadeploy' ],
entry_points={
'console_scripts': ['hadeploy-main=hadeploy.core.main:main']
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Installation/Setup',
'Topic :: System :: Systems Administration',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
],
keywords='hadoop deployement bigdata big-data hdfs hbase hive kafka ranger'
)