-
Notifications
You must be signed in to change notification settings - Fork 82
/
setup.py
42 lines (37 loc) · 1.21 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
41
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
Magento API
:copyright: (c) 2010 by Sharoon Thomas.
:copyright: (c) 2010-2013 by Openlabs Technologies & Consulting (P) LTD
:license: AGPLv3, see LICENSE for more details
'''
import os
from setuptools import setup
execfile(os.path.join('magento', 'version.py'))
setup(
name = 'magento',
version=VERSION,
url='https://github.com/openlabs/magento/',
license='GNU Affero General Public License v3',
author='Sharoon Thomas, Openlabs Technologies',
author_email='[email protected]',
description='Magento Core API Client',
long_description=open('README.rst').read(),
packages=['magento'],
zip_safe=False,
platforms='any',
install_requires=[
'suds>=0.3.9',
],
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)