forked from facetoe/zenpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (34 loc) · 1.19 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
from setuptools import setup
import setuptools
setup(
name='zenpy',
packages=setuptools.find_packages(),
version='2.0.18',
description='Python wrapper for the Zendesk API',
license='GPLv3',
author='Face Toe',
author_email='[email protected]',
url='https://github.com/facetoe/zenpy',
download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.18',
install_requires=[
'requests>=2.14.2',
'python-dateutil>=2.7.5',
'cachetools>=3.1.0',
'pytz>=2018.9',
],
keywords=['zendesk', 'api', 'wrapper'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
],
)