-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
43 lines (40 loc) · 1.36 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
# -*- coding: utf-8 -*-
#-----------------------------------------------------------------------------
# Copyright (c) 2011, Evan Leis
#
# Distributed under the terms of the Lesser GNU General Public License (LGPL)
#-----------------------------------------------------------------------------
from setuptools import setup, find_packages
with open('kayako/README.txt') as readme:
long_description = readme.read()
setup(
name='kayako',
version='1.1.6',
description="Python API Wrapper for Kayako 4.01.240",
long_description=long_description,
author='Evan Leis',
author_email='[email protected]',
url='',
install_requires=[
'lxml',
],
setup_requires=[],
packages=find_packages(exclude=[]),
include_package_data=True,
test_suite='kayako.tests',
package_data={},
zip_safe=True,
entry_points="""
""",
license="Lesser GNU General Public License (LGPL)",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)