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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env python
  2. """
  3. Installation script:
  4. To release a new version to PyPi:
  5. - Ensure the version is correctly set in oscar.__init__.py
  6. - Run: python setup.py sdist upload
  7. """
  8. from setuptools import setup, find_packages
  9. from oscar import get_version
  10. setup(name='django-oscar',
  11. version=get_version().replace(' ', '-'),
  12. url='https://github.com/tangentlabs/django-oscar',
  13. author="David Winterbottom",
  14. author_email="david.winterbottom@tangentlabs.co.uk",
  15. description="A domain-driven e-commerce framework for Django 1.3+",
  16. long_description=open('README.rst').read(),
  17. keywords="E-commerce, Django, domain-driven",
  18. license='BSD',
  19. platforms=['linux'],
  20. packages=find_packages(exclude=["sandbox*", "tests*"]),
  21. include_package_data=True,
  22. install_requires=[
  23. 'django==1.4',
  24. 'PIL==1.1.7',
  25. 'South==0.7.3',
  26. 'django-extra-views==0.2.0',
  27. 'django-haystack==1.2.7',
  28. 'django-treebeard==1.61',
  29. 'sorl-thumbnail==11.12',
  30. 'python-memcached==1.48',
  31. 'django-sorting==0.1',
  32. ],
  33. # See http://pypi.python.org/pypi?%3Aaction=list_classifiers
  34. classifiers=['Environment :: Web Environment',
  35. 'Framework :: Django',
  36. 'Intended Audience :: Developers',
  37. 'License :: OSI Approved :: BSD License',
  38. 'Operating System :: Unix',
  39. 'Programming Language :: Python']
  40. )