forked from django-oscar/django-oscar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
from oscar import get_version
version = get_version()
setup(name='django-oscar',
version=version.replace(' ', '-'),
url='https://github.com/tangentlabs/django-oscar',
author="Tangent Labs",
author_email="[email protected]",
description="A domain-driven ecommerce framework for Django 1.3",
long_description=open('README.rst').read(),
license='LICENSE',
package_dir={'': '.'},
install_requires=[
'django-haystack>=1.2.0',
'django-treebeard>=1.6.1',
'sorl-thumbnail>=11.05.1'],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python']
)