setup.py 900 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. from setuptools import setup, find_packages
  2. requires = [
  3. 'pyramid',
  4. 'pyramid_chameleon',
  5. 'psycopg2',
  6. 'sqlalchemy',
  7. 'gunicorn'
  8. ]
  9. tests_require = [
  10. 'nose-cov',
  11. 'webtest'
  12. ]
  13. setup(name='frameworkbenchmarks',
  14. version='0.0',
  15. description='FrameworkBenchmarks',
  16. classifiers=[
  17. "Programming Language :: Python",
  18. "Framework :: Pyramid",
  19. "Topic :: Internet :: WWW/HTTP",
  20. "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
  21. ],
  22. author='',
  23. author_email='',
  24. url='',
  25. keywords='web pyramid pylons',
  26. packages=find_packages(),
  27. include_package_data=True,
  28. zip_safe=False,
  29. install_requires=requires,
  30. tests_require=tests_require,
  31. test_suite="frameworkbenchmarks",
  32. entry_points="""\
  33. [paste.app_factory]
  34. main = frameworkbenchmarks:main
  35. """,
  36. )