-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 742 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 742 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
from setuptools import setup
from setuptools import find_packages
try:
from pypandoc import convert_file
long_description = convert_file('README.md', 'rst')
except ImportError:
long_description = open('README.md').read()
setup(
name='talkzoho',
version='3.0.3',
description='Asynchronous wrapper for Zoho\'s numerous APIs',
long_description=long_description,
url='https://github.com/A2Z-Cloud/Talk-Zoho',
packages=find_packages(exclude=('tests', 'tests.*')),
author='James Stidard',
author_email='james.stidard@a2zcloud.com',
keywords=['talkzoho', 'Zoho', 'async', 'tornado'],
install_requires=[
'fuzzywuzzy',
'python-Levenshtein',
'inflect',
'tornado'])