-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
41 lines (37 loc) · 1.11 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
:license: BSD, see LICENSE for more details
'''
import os
from setuptools import setup
exec(open(os.path.join('magento', 'version.py')).read())
setup(
name = 'magento',
version=VERSION,
url='https://github.com/fulfilio/magento/',
license='BSD 3-Clause',
author='Sharoon Thomas, Openlabs Technologies',
author_email='info@fulfil.io',
description='Magento Core API Client',
long_description=open('README.rst').read(),
packages=['magento'],
zip_safe=False,
platforms='any',
install_requires=[
'suds-jurko>=0.6',
'six',
],
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)