/setup.py

https://bitbucket.org/pshilavantar/rfp_madness · Python · 39 lines · 31 code · 3 blank · 5 comment · 0 complexity · 58103e8d81e0138a3855e82494e66f13 MD5 · raw file

  1. """
  2. Either setuptools or distribute must be installed in order for
  3. this module to run.
  4. For development work, run "python setup.py develop" from the
  5. top level package directory where this setup.py module resides.
  6. """
  7. from setuptools import find_packages, setup
  8. setup(
  9. name='rfp_madness',
  10. version='0.1',
  11. #packages=['rfp_madness', 'rfp_madness.kbase', 'rfp_madness.testing_support', 'tests'],
  12. url='https://bitbucket.org/bradallen/rfp_madness',
  13. license='Tentative...possibly LGPL.',
  14. author='Brad Allen',
  15. author_email='bradallen137@gmail.com',
  16. description=('A Django-based web app (unreleased, still in development) for '
  17. 'teams who find themselves responding to a lot of incoming RFPs, '
  18. 'and need a better way to collaborate than taking turns editing '
  19. 'a bunch of Word and Excel documents.'),
  20. packages=find_packages(exclude=["tests"]),
  21. zip_safe = False,
  22. include_package_data = True,
  23. entry_points = {
  24. 'console_scripts': [
  25. 'populate_demo_data = rfp_madness.scripts.populate_demo_data:main',
  26. ],
  27. },
  28. install_requires = ['django>=1.4.0',
  29. 'pysistence',
  30. 'unittest2', # for Python 2.5 and 2.6 compatibility
  31. 'ordereddict', # for Python 2.5 and 2.6 compatibility
  32. 'factory_boy'
  33. ],
  34. tests_require = ['django-discover-runner',],
  35. )