12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- """
- FlaskBB
- =======
- FlaskBB is a forum software written in Python using the microframework Flask.
- And Easy to Setup
- -----------------
- .. code:: bash
- $ python manage.py createall
- $ python manage.py runserver
- * Running on http://localhost:8080/
- Resources
- ---------
- * `website <http://flaskbb.org>`_
- * `source <https://github.com/sh4nks/flaskbb>`_
- * `issues <https://github.com/sh4nks/flaskbb/issues>`_
- """
- from setuptools import setup
- setup(
- name='FlaskBB',
- version='0.1-dev',
- url='http://github.com/sh4nks/flaskbb/',
- license='BSD',
- author='sh4nks',
- author_email='sh4nks7@gmail.com',
- description='A forum software written with flask',
- long_description=__doc__,
- packages=['flaskbb'],
- include_package_data=True,
- zip_safe=False,
- platforms='any',
- install_requires=[
- 'Flask',
- 'Flask-Redis',
- 'Flask-Cache',
- 'Flask-DebugToolbar',
- 'Flask-HTTPAuth',
- 'Flask-Login',
- 'Flask-Mail',
- 'Flask-Migrate',
- 'Flask-Plugins',
- 'Flask-RESTful',
- 'Flask-SQLAlchemy',
- 'Flask-Script',
- 'Flask-Themes2',
- 'Flask-WTF',
- 'Flask-WhooshAlchemy',
- 'Flask-BabelEx',
- 'Jinja2',
- 'Mako',
- 'MarkupSafe',
- 'markdown2',
- 'Pygments',
- 'SQLAlchemy',
- 'WTForms',
- 'Werkzeug',
- 'Whoosh',
- 'alembic',
- 'blinker',
- 'itsdangerous',
- 'py',
- 'pytest',
- 'pytest-random',
- 'pytest-cov',
- 'pytz',
- 'redis',
- 'simplejson',
- 'speaklater',
- 'postmarkup',
- 'unidecode'
- ],
- dependency_links=[
- 'https://github.com/frol/postmarkup/tarball/master#egg=postmarkup',
- 'https://github.com/jshipley/Flask-WhooshAlchemy/archive/master.zip#egg=Flask-WhooshAlchemy',
- 'https://github.com/sh4nks/flask-babelex/tarball/master#egg=Flask-BabelEx'
- ],
- classifiers=[
- 'Development Status :: 4 - Beta',
- 'Environment :: Web Environment',
- 'Intended Audience :: Developers, Users',
- 'License :: OSI Approved :: BSD License',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 3',
- 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
- 'Topic :: Software Development :: Libraries :: Python Modules'
- ]
- )
|