forked from krriyo/Zopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 640 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 640 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = (0, 4, 0)
setup(
name = 'zopy',
packages = ['zopy'],
version = '.'.join(str(x) for x in __version__),
description = "Zoho API integration for Python",
author = 'Dharwin Perez',
author_email = 'dhararon@hotmail.com',
url = 'https://github.com/dhararon/zopy',
download_url = 'https://github.com/dhararon/Zopy/tarball/master',
keywords = ['crm', 'CRM', 'zoho'],
classifiers=[],
license='MIT license',
install_requires=[
'requests',
'marshmallow'
],
)