setup.py 890 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # -*- coding: utf-8 -*-
  2. from setuptools import setup, find_packages
  3. setup(
  4. name='frameworkbenchmarks',
  5. version='0.0',
  6. description='FrameworkBenchmarks',
  7. author='',
  8. author_email='',
  9. url='',
  10. packages=find_packages(),
  11. include_package_data=True,
  12. zip_safe=False,
  13. platforms='any',
  14. install_requires=[
  15. 'more.pony',
  16. 'psycopg2',
  17. 'more.jinja2',
  18. 'gunicorn',
  19. 'meinheld',
  20. ],
  21. extras_require=dict(
  22. test=[
  23. 'pytest >= 2.9.1',
  24. 'WebTest >= 2.0.14',
  25. 'pytest-cov',
  26. ]
  27. ),
  28. entry_points=dict(
  29. morepath=[
  30. 'scan = app',
  31. ],
  32. ),
  33. classifiers=[
  34. 'Programming Language :: Python',
  35. 'Framework :: Morepath',
  36. 'Topic :: Internet :: WWW/HTTP',
  37. 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
  38. ]
  39. )