Browse Source

Replaced the MANIFEST.in which was mistakenly deleted

master
David Winterbottom 14 years ago
parent
commit
f622454298
3 changed files with 4 additions and 2 deletions
  1. 1
    0
      MANIFEST.in
  2. 1
    1
      oscar/__init__.py
  3. 2
    1
      setup.py

+ 1
- 0
MANIFEST.in View File

@@ -0,0 +1 @@
1
+include *.rst

+ 1
- 1
oscar/__init__.py View File

@@ -1,6 +1,6 @@
1 1
 # Use 'final' as the 4th element to indicate
2 2
 # a full release
3
-VERSION = (0, 1, 0, 'beta', 10)
3
+VERSION = (0, 1, 0, 'beta', 11)
4 4
     
5 5
 def get_version():
6 6
     version = '%s.%s' % (VERSION[0], VERSION[1])

+ 2
- 1
setup.py View File

@@ -62,7 +62,8 @@ setup(name='django-oscar',
62 62
                 'oscar.test',
63 63
                 'oscar.views',
64 64
                 'oscar.models',],
65
-      package_data={'oscar': ['templates/basket/*.html',
65
+      package_data={'oscar': ['README.rst',
66
+                              'templates/basket/*.html',
66 67
                               'templates/catalogue/*.html',
67 68
                               'templates/checkout/*.html',
68 69
                               'templates/customer/*.html',

Loading…
Cancel
Save