You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. from setuptools import setup
  2. setup(name='django-oscar',
  3. version='0.1.0',
  4. url='https://github.com/tangentlabs/django-oscar',
  5. description="Domain-driven ecommerce for Django",
  6. author="David Winterbottom",
  7. author_email="david.winterbottom@tangentlabs.co.uk",
  8. package_dir={'': '.'},
  9. install_requires=['Django==1.3',
  10. 'PIL>=1.1.7',
  11. 'django-haystack==1.2.0-beta'],
  12. dependency_links = [
  13. 'https://github.com/toastdriven/django-haystack/tarball/master#egg=django-haystack-1.2.0-beta'
  14. ]
  15. )