-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
58 lines (54 loc) · 1.74 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
"""
setup
:copyright: © 2013 by Openlabs Technologies & Consulting (P) Limited
:license: BSD, see LICENSE for more details.
"""
import os
from setuptools import setup
execfile(os.path.join('pystashop', 'version.py'))
setup(
name='pystashop',
version=VERSION, # noqa
url='https://github.com/openlabs/pystashop/',
author='Sharoon Thomas, Openlabs Technologies',
author_email='[email protected]',
description='Prestashop Webservice Python API Client',
long_description=open('README.rst').read(),
packages=['pystashop', 'mockstashop'],
package_dir={'mockstashop': 'mockstashop'},
package_data={
'mockstashop': [
'xml/1.5/*.xml',
'xml/1.5/shops/*.xml',
'xml/1.5/customers/*.xml',
'xml/1.5/addresses/*.xml',
'xml/1.5/countries/*.xml',
'xml/1.5/states/*.xml',
'xml/1.5/currencies/*.xml',
'xml/1.5/products/*.xml',
'xml/1.5/combinations/*.xml',
'xml/1.5/product_option_values/*.xml',
'xml/1.5/orders/*.xml',
'xml/1.5/order_details/*.xml',
'xml/1.5/order_states/*.xml',
'xml/1.5/languages/*.xml',
],
},
zip_safe=False,
platforms='any',
install_requires=[
'requests',
'lxml',
],
classifiers=[
'Development Status :: 6 - Mature',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
test_suite='tests.suite',
)