We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e5f510 + f714a86 commit 55ad528Copy full SHA for 55ad528
payu/admin.py
@@ -1,5 +1,5 @@
1
from django.contrib import admin
2
-from models import Transaction, CancelRefundCaptureRequests
+from payu.models import Transaction, CancelRefundCaptureRequests
3
4
# Register your models here.
5
setup.py
@@ -23,7 +23,7 @@
23
setup(
24
name='django-payu',
25
version='0.2',
26
- packages=['payu'],
+ packages=['payu', 'payu.migrations'],
27
include_package_data=True,
28
description='A simple PayU app for Django.',
29
long_description=README,
@@ -45,6 +45,6 @@
45
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
46
],
47
install_requires=[
48
- "django",
+ 'django>=1.7,<=1.10',
49
50
)
0 commit comments