-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (39 loc) · 1.34 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
from setuptools import setup, find_packages
setup(
name='django-oscar-amazon-payments',
version="0.2.7",
url='https://github.com/simonkagwe/django-oscar-amazon-payments',
author="Simon Kagwi",
author_email="[email protected]",
description=(
"This package provides integration between django-oscar and "
"Amazon Payments (Login and Pay with Amazon)."),
long_description=open('README.rst').read(),
keywords="Amazon Payments, Oscar, Django",
license=open('LICENSE').read(),
platforms=['linux'],
packages=find_packages(exclude=['sandbox*', 'tests*']),
include_package_data=True,
install_requires=[
'requests',
'beautifulsoup4',
'lxml'],
extras_require={
'oscar': ["django-oscar>=0.7"]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Other/Nonlisted Topic'],
test_suite="tests.tests",
tests_require=["mock==0.8.0"],
test_loader="unittest:TestLoader"
)