Skip to content

Commit

Permalink
added setup.py needed files
Browse files Browse the repository at this point in the history
  • Loading branch information
yvess committed Feb 10, 2019
1 parent 5b0900d commit ee3d43d
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
10 changes: 10 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
saferpay/__init__.py
saferpay/admin.py
saferpay/execptions.py
saferpay/gateway.py
saferpay/models.py
saferpay/urls.py
saferpay/views.py
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
36 changes: 36 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/usr/bin/env python

from saferpay import VERSION

try:
from setuptools import setup
except ImportError:
from distutils.core import setup

setup(
name='saferpay',
packages=['saferpay'],
version=VERSION,
license='MIT',
description='Saferpay payment integration for django.',
author='Yves Serrano',
author_email='[email protected]',
url='https://github.com/taywa/django-saferpay',
keywords=['saferpay', 'payment'],
install_requires=[
'Django>=1.11,<2.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
'Framework :: Django :: 1.11',
],
)

0 comments on commit ee3d43d

Please sign in to comment.