This repository has been archived by the owner on Oct 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
65 lines (56 loc) · 1.55 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
# -*- coding: utf-8 -*-
#
# Warthog - Simple client for A10 load balancers
#
# Copyright 2014-2016 Smarter Travel
#
# Available under the MIT license. See LICENSE for details.
#
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import warthog
AUTHOR = 'Smarter Travel'
EMAIL = ''
DESCRIPTION = 'Simple client for A10 load balancers'
URL = 'https://github.com/smarter-travel-media/warthog'
LICENSE = 'MIT'
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution"
]
REQUIREMENTS = [
'click',
'requests'
]
with codecs.open('README.rst', 'r', 'utf-8') as handle:
LONG_DESCRIPTION = handle.read()
setup(
name='warthog',
version=warthog.__version__,
author=AUTHOR,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author_email=EMAIL,
classifiers=CLASSIFIERS,
license=LICENSE,
url=URL,
install_requires=REQUIREMENTS,
zip_safe=True,
packages=['warthog', 'warthog.packages'],
entry_points="""
[console_scripts]
warthog=warthog.cli:main
""")