-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (35 loc) · 1.45 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
import setuptools
setuptools.setup(
name="cluster_preflight_check",
version="0.0.34",
author="Xin Liang",
author_email="[email protected]",
url="https://github.com/liangxin1300/cluster_preflight_check.git",
license="BSD",
packages=setuptools.find_packages(exclude=["tests"]),
description="Tool for Standardize Testing of Basic Cluster Functionality",
entry_points={
'console_scripts': ['ha-cluster-preflight-check=cluster_preflight_check.main:main'],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Clustering",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
]
)