-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 878 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 878 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
31
#!/usr/bin/env python
# encoding: utf-8
"""
setup.py
"""
from setuptools import setup, find_packages
import os
execfile(os.path.join('sforce', 'version.py'))
setup(
name = 'sforce',
version = VERSION,
description = 'Provide a thin layer around the Salesforce SOAP messaging that consumes both the Enterprise and Partner WSDL formats and implements the Salesforce API 17.0 spec.',
author = 'dlanstein',
author_email = 'lanstein@yahoo.com',
url = 'https://github.com/vchan/salesforce-python-toolkit',
packages = ['sforce'],
scripts = [],
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires = [
'suds==0.3.7',
],
zip_safe = False
)