forked from leetrout/python-capsule-crm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 875 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 875 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
28
29
30
from setuptools import setup
long_description = """
Python bindings for Capsule CRM API.
See the repo home for usage instructions at
https://github.com/leetrout/python-capsule-crm/
"""
setup(
name='capsule_crm',
version='0.1.2',
description='Capsule CRM Python API wrapper',
long_description=long_description,
author='Lee Trout',
author_email='leetrout@gmail.com',
url='https://github.com/leetrout/python-capsule-crm/',
py_modules=['capsule_crm'],
install_requires=['requests>=2'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
)