-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (20 loc) · 756 Bytes
/
setup.py
File metadata and controls
27 lines (20 loc) · 756 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
"""
setupTools based setup script for
To install: python setup.py install
"""
from distutils.core import setup
version = '0.3.2'
PACKAGES = ['sugarcrm']
setup(name = 'sugarcrm',
version = version,
description = "SugarCRM Python library",
author = "Daniel Casper, Brooks Internet Software, Inc.",
author_email = "dancasper@gmail.com",
url = "http://github.com/sugarcrm/python_webservices_library",
classifiers = ["Programming Language :: Python",
"Inteded Audience :: Developers",
"Topic :: Office/Business"],
keywords = "Customer Relationship Management SugarCRM CRM",
packages = PACKAGES,
install_requires = ['simplejson>=2.2', 'six>=1.4.1']
)