forked from xcir/python-varnishapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.27 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
# -*- encoding: utf-8 -*-
import os
import sys
from distutils.core import setup
from setuptools import find_packages
current_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_dir, 'README.rst')) as readme_file:
long_description = readme_file.read()
sys.path.insert(0, current_dir + os.sep + 'src')
release = "40.15"
setup(
name='varnishapi',
version=release,
author='Shohei Tanaka(@xcir)',
author_email='[email protected]',
url='https://github.com/xcir/python-varnishapi',
description="Connect to libvarnish api by ctypes",
long_description=long_description,
install_requires=[],
keywords='varnish,varnishlog,varnishstat',
platforms=['any'],
license='BSD',
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src'},
py_modules = ['varnishapi'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
]
)