forked from crisp-im/python-crisp-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 758 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 758 Bytes
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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='crisp-api',
version='1.0.4',
author=u'Valerian Saliou',
author_email='valerian@valeriansaliou.name',
packages=find_packages(),
include_package_data=True,
url='https://github.com/crisp-im/python-crisp-api',
license='MIT - http://opensource.org/licenses/mit-license.php',
description='Crisp API Python.',
long_description=open('README.md').read(),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
],
install_requires=[
'requests',
],
zip_safe=False,
)