-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (33 loc) · 967 Bytes
/
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
from setuptools import setup, find_packages
from pyvarnish import __author__, __version__
setup(
name='pyvarnish',
version=__version__,
description='Varnish Management',
long_description=open('README.rst').read(),
author=__author__,
author_email='[email protected]',
url='https://github.com/redsnapper8t8/pyvarnish',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points = {
'console_scripts': [
'pyvarnish = pyvarnish.parse_stats:main',
],
},
install_requires = [
'lxml',
'paramiko',
],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Topic :: System :: Monitoring',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)