setup.py 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import os
  2. from setuptools import setup, find_packages
  3. ROOT = os.path.abspath(os.path.dirname(__file__))
  4. setup(
  5. name='django-nose',
  6. version='1.3',
  7. description='Makes your Django tests simple and snappy',
  8. long_description=open(os.path.join(ROOT, 'README.rst')).read(),
  9. author='Jeff Balogh',
  10. author_email='me@jeffbalogh.org',
  11. maintainer='Erik Rose',
  12. maintainer_email='erikrose@grinchcentral.com',
  13. url='http://github.com/django-nose/django-nose',
  14. license='BSD',
  15. packages=find_packages(exclude=['testapp', 'testapp/*']),
  16. include_package_data=True,
  17. zip_safe=False,
  18. install_requires=['nose>=1.2.1', 'Django>=1.4'],
  19. tests_require=['south>=0.7'],
  20. # This blows up tox runs that install django-nose into a virtualenv,
  21. # because it causes Nose to import django_nose.runner before the Django
  22. # settings are initialized, leading to a mess of errors. There's no reason
  23. # we need FixtureBundlingPlugin declared as an entrypoint anyway, since you
  24. # need to be using django-nose to find the it useful, and django-nose knows
  25. # about it intrinsically.
  26. #entry_points="""
  27. # [nose.plugins.0.10]
  28. # fixture_bundler = django_nose.fixture_bundling:FixtureBundlingPlugin
  29. # """,
  30. classifiers=[
  31. 'Development Status :: 5 - Production/Stable',
  32. 'Environment :: Web Environment',
  33. 'Framework :: Django',
  34. 'Intended Audience :: Developers',
  35. 'License :: OSI Approved :: BSD License',
  36. 'Operating System :: OS Independent',
  37. 'Programming Language :: Python',
  38. 'Programming Language :: Python :: 2',
  39. 'Programming Language :: Python :: 2.6',
  40. 'Programming Language :: Python :: 2.7',
  41. 'Programming Language :: Python :: 3',
  42. 'Programming Language :: Python :: 3.3',
  43. 'Programming Language :: Python :: 3.4',
  44. 'Topic :: Software Development :: Testing'
  45. ]
  46. )