setup.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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==0.10.1',
  33. 'Flask-Cache==0.12',
  34. 'Flask-DebugToolbar==0.8.0',
  35. 'Flask-Login==0.2.7',
  36. 'Flask-Mail==0.9.0',
  37. 'Flask-SQLAlchemy==1.0',
  38. 'Flask-Script==0.6.2',
  39. 'Flask-Themes2==0.1.2',
  40. 'Flask-WTF==0.9.3',
  41. 'Jinja2==2.7.1',
  42. 'Pygments==1.6',
  43. 'MarkupSafe==0.18',
  44. 'SQLAlchemy==0.8.2',
  45. 'WTForms==1.0.5',
  46. 'Werkzeug==0.9.4',
  47. 'blinker==1.3',
  48. 'itsdangerous==0.23',
  49. 'postmarkup==1.2.0',
  50. 'wsgiref==0.1.2',
  51. ],
  52. classifiers=[
  53. 'Development Status :: 4 - Beta',
  54. 'Environment :: Web Environment',
  55. 'Intended Audience :: Developers, Users',
  56. 'License :: OSI Approved :: BSD License',
  57. 'Operating System :: OS Independent',
  58. 'Programming Language :: Python',
  59. 'Programming Language :: Python :: 3',
  60. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  61. 'Topic :: Software Development :: Libraries :: Python Modules'
  62. ]
  63. )