forked from gddc/python_webservices_library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 808 Bytes
/
setup.py
File metadata and controls
28 lines (21 loc) · 808 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
"""
setupTools based setup script for
To install: python setup.py install
"""
import os
#from setuptools import setup, find_packages
from distutils.core import setup
version = '0.1.0'
PACKAGES = ['sugarcrm'] #,'sugarcrm.Sugarcrm','sugarcrm.sugarbean']
setup(name = 'sugarcrm',
version = version,
description = "SugarCRM Python wrapper",
author="Capstone Class, Kent State University",
url="http://github.com/jmertic/KSU_Capstone_Spring_2011_Python",
classifiers=["Programming Language :: Python",
"Inteded Audience :: Developers",
"Topic :: Office/Business"],
keywords="Customer Relationship Management SugarCRM CRM",
packages=PACKAGES,
install_requires=['urllib','json','hashlib','sys']
)