File: setup.cfg

package info (click to toggle)
flask-sqlalchemy 3.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 832 kB
  • sloc: python: 2,909; makefile: 27; sh: 14
file content (30 lines) | stat: -rw-r--r-- 597 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[metadata]
name = flaskr
version = attr: flaskr.__version__
url = https://flask-sqlalchemy.palletsprojects.com/
author = Pallets
author_email = contact@palletsprojects.com
license = BSD-3-Clause
license_file = LICENSE.rst
description = A basic blog app built with Flask-SQLAlchemy.
long_description = file: README.rst

[options]
packages = find:
include_package_data = true
python_requires = >= 3.8
install_requires =
    Flask>=2.2
    Flask-SQLAlchemy>=3.1.0

[options.extras_require]
test =
    pytest
    coverage

[tool:pytest]
testpaths = tests

[coverage:run]
branch = True
source = flaskr