-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (20 loc) · 817 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
setuptools.setup(
install_requires=['requests'],
author = 'Caleb Boylan',
name = 'zendeskhc',
description = 'Python module for interacting with the Zendesk Help Center API',
author_email = 'calebboylan@gmail.com',
url = 'https://github.com/squidboylan/zendeskpy',
version = '0.4.1',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
packages=setuptools.find_packages(exclude=["tests"]),
)