forked from ashishkumar-tudip/python-demandware-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.25 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.25 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
import dw
setup(
name = 'dw',
version = dw.__version__,
author = re.sub(r'\s+<.*', r'', dw.__author__),
author_email = re.sub(r'(^.*<)|(>.*$)', r'', dw.__author__),
url = dw.__url__,
download_url = dw.__download_url__,
license = 'GPL',
description = ('Python Demandware SDK provides access to the OCAPI services.'),
long_description = open('README').read(),
packages = find_packages(),
data_files = [],
test_suite = 'nose.collector',
tests_require = ['nose',],
keywords = [
'dw',
'demandware',
'commerce',
'ecommerce',
'e-commerce',
'ocaapi',
],
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)