setup.py 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. """
  2. FlaskBB
  3. =======
  4. FlaskBB is a forum software written in Python using the microframework Flask.
  5. And Easy to Setup
  6. -----------------
  7. .. code:: bash
  8. $ python manage.py createall
  9. $ python manage.py runserver
  10. * Running on http://localhost:8080/
  11. Resources
  12. ---------
  13. * `website <http://flaskbb.org>`_
  14. * `source <https://github.com/sh4nks/flaskbb>`_
  15. * `issues <https://github.com/sh4nks/flaskbb/issues>`_
  16. """
  17. from setuptools import setup
  18. setup(
  19. name='FlaskBB',
  20. version='0.1-dev',
  21. url='http://github.com/sh4nks/flaskbb/',
  22. license='BSD',
  23. author='sh4nks',
  24. author_email='sh4nks7@gmail.com',
  25. description='A forum software written with flask',
  26. long_description=__doc__,
  27. packages=['flaskbb'],
  28. include_package_data=True,
  29. zip_safe=False,
  30. platforms='any',
  31. install_requires=[
  32. 'Flask',
  33. 'Flask-Redis',
  34. 'Flask-Cache',
  35. 'Flask-DebugToolbar',
  36. 'Flask-HTTPAuth',
  37. 'Flask-Login',
  38. 'Flask-Mail',
  39. 'Flask-Migrate',
  40. 'Flask-Plugins',
  41. 'Flask-RESTful',
  42. 'Flask-SQLAlchemy',
  43. 'Flask-Script',
  44. 'Flask-Themes2',
  45. 'Flask-WTF',
  46. 'Flask-WhooshAlchemy',
  47. 'Flask-BabelEx',
  48. 'Jinja2',
  49. 'Mako',
  50. 'MarkupSafe',
  51. 'markdown2',
  52. 'Pygments',
  53. 'SQLAlchemy',
  54. 'WTForms',
  55. 'Werkzeug',
  56. 'Whoosh',
  57. 'alembic',
  58. 'blinker',
  59. 'itsdangerous',
  60. 'py',
  61. 'pytest',
  62. 'pytest-random',
  63. 'pytest-cov',
  64. 'pytz',
  65. 'redis',
  66. 'simplejson',
  67. 'speaklater',
  68. 'postmarkup',
  69. 'unidecode'
  70. ],
  71. dependency_links=[
  72. 'https://github.com/frol/postmarkup/tarball/master#egg=postmarkup',
  73. 'https://github.com/jshipley/Flask-WhooshAlchemy/archive/master.zip#egg=Flask-WhooshAlchemy',
  74. 'https://github.com/sh4nks/flask-babelex/tarball/master#egg=Flask-BabelEx'
  75. ],
  76. classifiers=[
  77. 'Development Status :: 4 - Beta',
  78. 'Environment :: Web Environment',
  79. 'Intended Audience :: Developers, Users',
  80. 'License :: OSI Approved :: BSD License',
  81. 'Operating System :: OS Independent',
  82. 'Programming Language :: Python',
  83. 'Programming Language :: Python :: 3',
  84. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  85. 'Topic :: Software Development :: Libraries :: Python Modules'
  86. ]
  87. )