setup.py 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. 'unidecode'
  64. ],
  65. dependency_links=[
  66. 'https://github.com/frol/postmarkup/tarball/master#egg=postmarkup',
  67. 'https://github.com/jshipley/Flask-WhooshAlchemy/archive/master.zip#egg=Flask-WhooshAlchemy'
  68. ],
  69. classifiers=[
  70. 'Development Status :: 4 - Beta',
  71. 'Environment :: Web Environment',
  72. 'Intended Audience :: Developers, Users',
  73. 'License :: OSI Approved :: BSD License',
  74. 'Operating System :: OS Independent',
  75. 'Programming Language :: Python',
  76. 'Programming Language :: Python :: 3',
  77. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  78. 'Topic :: Software Development :: Libraries :: Python Modules'
  79. ]
  80. )