-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
setup.py
executable file
·44 lines (43 loc) · 1.55 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
from setuptools import setup
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='zenpy',
packages=setuptools.find_packages(),
version='2.0.55',
description='Python wrapper for the Zendesk API',
long_description=long_description,
long_description_content_type='text/markdown',
license='GPLv3',
license_files = ('LICENSE'),
author='Face Toe',
author_email='facetoe@facetoe.com.au',
url='https://github.com/facetoe/zenpy',
download_url='https://github.com/facetoe/zenpy/releases/tag/2.0.55',
install_requires=[
'requests>=2.14.2',
'python-dateutil>=2.7.5',
'cachetools>=3.1.0',
'pytz>=2018.9',
'six>=1.14.0',
],
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',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
],
)