|
|
@@ -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
|
+ )
|