Skip to content

Commit

Permalink
added setup.py setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
yvess committed Feb 10, 2019
1 parent 08eaffb commit 54e0d09
Showing 3 changed files with 46 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
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
42 changes: 42 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#!/usr/bin/env python

from saferpay_oscar import VERSION
from setuptools import setup, find_packages

with open("README.md", "r") as f:
long_description = f.read()

setup(
name='django-oscar-saferpay',
packages=find_packages(),
version=VERSION,
license='MIT',
description='Saferpay payment dashboard for django-oscar.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Yves Serrano',
author_email='ys@taywa.ch',
url='https://github.com/taywa/django-oscar-saferpay',
keywords=['saferpay', 'payment'],
install_requires=[
'Django>=1.11,<2.2',
'django-saferpay>=0.1',
'django-oscar>=1.6',
],
include_package_data=True,
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',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
],
)

0 comments on commit 54e0d09

Please sign in to comment.