setup.py 856 B

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