setup.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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-Login',
  37. 'Flask-Mail',
  38. 'Flask-Migrate',
  39. 'Flask-Plugins',
  40. 'Flask-SQLAlchemy',
  41. 'Flask-Script',
  42. 'Flask-Themes2',
  43. 'Flask-WTF',
  44. 'Flask-WhooshAlchemy',
  45. 'Jinja2',
  46. 'Mako',
  47. 'MarkupSafe',
  48. 'Pygments',
  49. 'SQLAlchemy',
  50. 'WTForms',
  51. 'Werkzeug',
  52. 'Whoosh',
  53. 'alembic',
  54. 'blinker',
  55. 'itsdangerous',
  56. 'py',
  57. 'pytest',
  58. 'pytest-random',
  59. 'pytest-cov',
  60. 'redis',
  61. 'simplejson',
  62. 'postmarkup'
  63. ],
  64. dependency_links=[
  65. 'https://github.com/frol/postmarkup/tarball/master#egg=postmarkup',
  66. 'https://github.com/jshipley/Flask-WhooshAlchemy/archive/master.zip#egg=Flask-WhooshAlchemy'
  67. ],
  68. classifiers=[
  69. 'Development Status :: 4 - Beta',
  70. 'Environment :: Web Environment',
  71. 'Intended Audience :: Developers, Users',
  72. 'License :: OSI Approved :: BSD License',
  73. 'Operating System :: OS Independent',
  74. 'Programming Language :: Python',
  75. 'Programming Language :: Python :: 3',
  76. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  77. 'Topic :: Software Development :: Libraries :: Python Modules'
  78. ]
  79. )