forked from simple-salesforce/simple-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
18 lines (17 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
import textwrap
setup(
name='simple-salesforce',
version='0.5',
author='Nick Catalano',
packages=['simple_salesforce',],
url='https://github.com/neworganizing/simple-salesforce',
license='APACHE',
description="Simple Salesforce is a basic Salesforce.com REST API client. The goal is to provide a very low-level interface to the API, returning a dictionary of the API JSON response.",
long_description=textwrap.dedent(open('README.rst', 'r').read()),
install_requires=[
'requests',
],
keywords = "python salesforce salesforce.com",
classifiers=['Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Natural Language :: English', 'Operating System :: OS Independent', 'Topic :: Internet :: WWW/HTTP'],
)