-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.24 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
import shop_wspay
from setuptools import find_packages, setup
try:
from pypandoc import convert
except ImportError:
import io
def convert(filename, fmt):
with io.open(filename, encoding='utf-8') as fd:
return fd.read()
CLASSIFIERS = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
setup(
author='Dino Perovic',
author_email='[email protected]',
name='djangoshop-wspay',
version=shop_wspay.__version__,
description='WSPay Payment integration for djangoSHOP.',
long_description=convert('README.md', 'rst'),
url='https://github.com/dinoperovic/djangoshop-wspay',
license='BSD',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
packages=find_packages(exclude=['tests', 'docs']),
include_package_data=True,
zip_safe=False,
install_requires=[
'django-shop>=0.10.0',
],
)