flask/setup.py

110 lines
2.6 KiB
Python
Raw Normal View History

2010-04-16 20:24:12 +08:00
"""
Flask
-----
Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
intentions. And before you ask: It's BSD licensed!
Flask is Fun
````````````
Save in a hello.py:
.. code:: python
2010-04-16 20:24:12 +08:00
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
And Easy to Setup
`````````````````
And run it:
.. code:: bash
2010-04-16 20:24:12 +08:00
2012-02-07 09:19:32 +08:00
$ pip install Flask
2010-04-16 20:24:12 +08:00
$ python hello.py
* Running on http://localhost:5000/
2016-06-03 03:47:36 +08:00
Ready for production? `Read this first <http://flask.pocoo.org/docs/deploying/>`.
2010-04-16 20:24:12 +08:00
Links
`````
* `website <http://flask.pocoo.org/>`_
* `documentation <http://flask.pocoo.org/docs/>`_
2010-04-21 00:40:58 +08:00
* `development version
<https://github.com/pallets/flask/zipball/master#egg=Flask-dev>`_
2010-04-16 20:24:12 +08:00
"""
2015-02-07 01:06:16 +08:00
import re
import ast
from setuptools import setup
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('flask/__init__.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
2010-04-06 19:23:18 +08:00
setup(
name='Flask',
2015-02-07 01:06:16 +08:00
version=version,
url='https://github.com/pallets/flask/',
2010-04-06 19:23:18 +08:00
license='BSD',
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',
2010-04-21 00:40:58 +08:00
description='A microframework based on Werkzeug, Jinja2 '
'and good intentions',
2010-04-16 20:24:12 +08:00
long_description=__doc__,
2014-09-01 05:59:43 +08:00
packages=['flask', 'flask.ext'],
2011-09-22 20:08:03 +08:00
include_package_data=True,
2010-04-06 19:23:18 +08:00
zip_safe=False,
platforms='any',
install_requires=[
'Werkzeug>=0.9',
2012-08-11 10:09:14 +08:00
'Jinja2>=2.4',
2014-04-28 19:26:14 +08:00
'itsdangerous>=0.21',
2017-05-24 06:29:37 +08:00
'click>=4.0',
2010-04-16 20:24:12 +08:00
],
extras_require={
'dev': [
'blinker',
'greenlet',
'pytest>=3',
'coverage',
'tox',
'sphinx',
'sphinxcontrib-log-cabinet'
],
},
2010-04-16 20:24:12 +08:00
classifiers=[
2010-05-12 07:29:25 +08:00
'Development Status :: 4 - Beta',
2010-04-16 20:24:12 +08:00
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
2010-04-16 20:24:12 +08:00
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
2010-05-31 23:53:10 +08:00
],
entry_points='''
[console_scripts]
2014-04-28 19:26:14 +08:00
flask=flask.cli:main
2014-09-04 22:22:57 +08:00
'''
2010-04-06 19:23:18 +08:00
)