-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
32 lines (30 loc) · 1.03 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
from setuptools import setup, find_packages
setup(
name='django-oscar-adyen',
version='0.9.0',
url='https://github.com/oscaro/django-oscar-adyen',
author='Oscaro',
description='Adyen HPP payment module for django-oscar',
long_description=open('README.rst').read(),
keywords='payment, django, oscar, adyen',
license='BSD',
packages=find_packages(),
include_package_data=True,
install_requires=[
'iptools==0.6.1',
'django-oscar>=2.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business :: Financial :: Point-Of-Sale',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)