flask/examples/tutorial/setup.cfg

29 lines
535 B
INI
Raw Normal View History

2018-02-10 06:39:05 +08:00
[metadata]
2020-04-05 05:36:09 +08:00
name = flaskr
version = 1.0.0
url = https://flask.palletsprojects.com/tutorial/
license = BSD-3-Clause
maintainer = Pallets
maintainer_email = contact@palletsprojects.com
description = The basic blog app built in the Flask tutorial.
long_description = file: README.rst
long_description_content_type = text/x-rst
2018-02-10 06:39:05 +08:00
2020-04-05 05:36:09 +08:00
[options]
packages = find:
include_package_data = true
install_requires =
Flask
[options.extras_require]
test =
pytest
2018-02-10 06:39:05 +08:00
[tool:pytest]
testpaths = tests
[coverage:run]
branch = True
source =
flaskr