flask/setup.py

82 lines
2.5 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
2015-02-06 18:06:16 +01:00
import re
2018-04-26 11:57:21 -07:00
from collections import OrderedDict
2015-02-06 18:06:16 +01:00
from setuptools import setup
with io.open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
2015-02-06 18:06:16 +01:00
with io.open('flask/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
2010-04-06 13:23:18 +02:00
setup(
name='Flask',
2015-02-06 18:06:16 +01:00
version=version,
url='https://www.palletsprojects.com/p/flask/',
2018-04-26 11:57:21 -07:00
project_urls=OrderedDict((
('Documentation', 'http://flask.pocoo.org/docs/'),
2018-04-30 19:05:46 -07:00
('Code', 'https://github.com/pallets/flask'),
('Issue tracker', 'https://github.com/pallets/flask/issues'),
2018-04-26 11:57:21 -07:00
)),
2010-04-06 13:23:18 +02:00
license='BSD',
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',
maintainer='Pallets team',
maintainer_email='contact@palletsprojects.com',
description='A simple framework for building complex web applications.',
long_description=readme,
2017-06-26 08:47:28 -07:00
packages=['flask', 'flask.json'],
2011-09-22 14:08:03 +02:00
include_package_data=True,
2010-04-06 13:23:18 +02:00
zip_safe=False,
platforms='any',
install_requires=[
2018-02-06 08:03:09 -08:00
'Werkzeug>=0.14',
'Jinja2>=2.10',
'itsdangerous>=0.24',
'click>=5.1',
2010-04-16 14:24:12 +02:00
],
extras_require={
2017-07-14 22:37:53 -07:00
'dotenv': ['python-dotenv'],
'dev': [
'pytest>=3',
'coverage',
'tox',
'sphinx',
'pallets-sphinx-themes',
'sphinxcontrib-log-cabinet',
],
'docs': [
'sphinx',
'pallets-sphinx-themes',
'sphinxcontrib-log-cabinet',
]
},
2010-04-16 14:24:12 +02:00
classifiers=[
2018-02-06 08:03:09 -08:00
'Development Status :: 5 - Production/Stable',
2010-04-16 14:24:12 +02:00
'Environment :: Web Environment',
2018-02-06 08:03:09 -08:00
'Framework :: Flask',
2010-04-16 14:24:12 +02:00
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
2017-05-28 11:52:01 -07:00
'Programming Language :: Python :: 3.6',
2010-04-16 14:24:12 +02:00
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
2018-02-06 08:03:09 -08:00
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
2010-05-31 17:53:10 +02:00
],
2018-02-06 08:03:09 -08:00
entry_points={
'console_scripts': [
'flask = flask.cli:main',
],
},
2010-04-06 13:23:18 +02:00
)