-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.15 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.15 KB
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
from setuptools import setup, find_packages
import charon
setup(
name="charon",
packages=find_packages(),
version=charon.VERSION,
author="Matt Long",
license="MIT",
author_email="matt@mattlong.org",
url="http://pypi.python.org/pypi/charon/",
description="A set of tools to manage the load balancer HAProxy",
long_description="Charon is a set a tools to manage an instance of the load balancer HAProxy. You can do so either locally or remotely using either the command-line directly or via a Fabric wrapper.",
install_requires=['Fabric==1.2.2'],
zip_safe=False,
entry_points={
'console_scripts': ['charon = charon.server:main',],
},
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)