forked from justquick/python-varnish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
20 lines (19 loc) · 764 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name='python-varnish',
version='0.2.1',
long_description=open('README.rst').read(),
description='Simple Python interface for the Varnish management port',
author='Justin Quick',
author_email='[email protected]',
url='http://github.com/justquick/python-varnish',
scripts=['bin/varnish_manager'],
py_modules=['varnish'],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)