forked from iqbaltalaat/simple-salesforce-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 loc) · 1.6 KB
/
setup.py
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
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
import textwrap
setup(
name='simple-salesforce-wrapper',
version='0.3.0',
author='Iqbal Talaat',
author_email='[email protected]',
maintainer='Iqbal Talaat',
maintainer_email='[email protected]',
packages=['simple_salesforce_wrapper'],
url='https://github.com/afrobeard/simple-salesforce-wrapper',
license='Apache 2.0',
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 an ordered dictionary of the API JSON response."),
long_description=textwrap.dedent(open('README.rst', 'r').read()),
install_requires=[
'simple_salesforce'
],
keywords="python salesforce salesforce.com",
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: PyPy'
]
)