setup.py 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. 'Babel',
  33. 'Flask',
  34. 'Flask-Cache',
  35. 'Flask-DebugToolbar',
  36. 'Flask-Login',
  37. 'Flask-Mail',
  38. 'Flask-Migrate',
  39. 'Flask-Plugins',
  40. 'Flask-Redis',
  41. 'Flask-SQLAlchemy',
  42. 'Flask-Script',
  43. 'Flask-Themes2',
  44. 'Flask-WTF',
  45. 'Flask-WhooshAlchemy',
  46. 'Flask-BabelEx',
  47. 'Jinja2',
  48. 'Mako',
  49. 'MarkupSafe',
  50. 'Pygments',
  51. 'SQLAlchemy',
  52. 'Unidecode',
  53. 'WTForms',
  54. 'Werkzeug',
  55. 'Whoosh',
  56. 'alembic',
  57. 'blinker',
  58. 'cov-core',
  59. 'coverage',
  60. 'itsdangerous',
  61. 'mistune',
  62. 'py',
  63. 'pytest',
  64. 'pytest-cov',
  65. 'pytest-random',
  66. 'pytz',
  67. 'redis',
  68. 'requests',
  69. 'simplejson',
  70. 'speaklater',
  71. 'sqlalchemy-utils'
  72. ],
  73. dependency_links=[
  74. 'https://github.com/jshipley/Flask-WhooshAlchemy/archive/master.zip#egg=Flask-WhooshAlchemy',
  75. 'https://github.com/sh4nks/flask-babelex/tarball/master#egg=Flask-BabelEx'
  76. ],
  77. classifiers=[
  78. 'Development Status :: 4 - Beta',
  79. 'Environment :: Web Environment',
  80. 'Intended Audience :: Developers, Users',
  81. 'License :: OSI Approved :: BSD License',
  82. 'Operating System :: OS Independent',
  83. 'Programming Language :: Python',
  84. 'Programming Language :: Python :: 3',
  85. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  86. 'Topic :: Software Development :: Libraries :: Python Modules'
  87. ]
  88. )