Browse Source

Restructured project folders to make oscar sit as a standalone app

master
David Winterbottom 14 years ago
parent
commit
67f6779ada

+ 1
- 0
.gitignore View File

@@ -6,3 +6,4 @@ product-images/*
6 6
 .project
7 7
 .pydevproject
8 8
 .settings
9
+django_oscar.egg-info/

__init__.py → examples/bookshop/__init__.py View File


sampleshop_books/__init__.py → examples/bookshop/product/__init__.py View File


sampleshop_books/product/models.py → examples/bookshop/product/models.py View File


sampleshop_books/product/__init__.py → examples/clothesshop/__init__.py View File


sampleshop_clothing/__init__.py → examples/clothesshop/product/__init__.py View File


sampleshop_clothing/product/models.py → examples/clothesshop/product/models.py View File


sampleshop_clothing/product/__init__.py → examples/defaultshop/__init__.py View File


manage.py → examples/defaultshop/manage.py View File


reset_oscar_tables.sh → examples/defaultshop/reset_oscar_tables.sh View File


run_tests.sh → examples/defaultshop/run_tests.sh View File


settings.py → examples/defaultshop/settings.py View File


test_settings.py → examples/defaultshop/test_settings.py View File


urls.py → examples/defaultshop/urls.py View File


+ 16
- 0
setup.py View File

@@ -0,0 +1,16 @@
1
+from setuptools import setup
2
+
3
+setup(name='django-oscar',
4
+        version='0.1.0',
5
+        url='https://github.com/codeinthehole/django-oscar',
6
+        description="Flexible ecommerce applications for Django",
7
+        author="David Winterbottom",
8
+        author_email="david.winterbottom@tangentlabs.co.uk",
9
+        package_dir={'': '.'},
10
+        classifiers = [
11
+            "Intended Audience :: Developers",
12
+            'Operating System :: OS Independent',
13
+            'Programming Language :: Python',
14
+            'Topic :: Software Development :: eCommerce',
15
+            ]
16
+        )

Loading…
Cancel
Save