forked from pallets-eco/flask-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.46 KB
/
pyproject.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[project]
name = "Flask-Session"
description = "Server-side session support for Flask"
readme = "README.rst"
license = {text = "BSD-3-Clause"}
maintainers = [{name = "Pallets Community Ecosystem", email = "[email protected]"}]
authors = [{name = "Shipeng Feng", email = "[email protected]"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Session",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
requires-python = ">=3.7"
dependencies = [
"flask>=2.2",
"cachelib",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://flask-session.readthedocs.io"
Changes = "https://flask-session.readthedocs.io/changes.html"
"Source Code" = "https://github.com/pallets-eco/flask-session/"
"Issue Tracker" = "https://github.com/pallets-eco/flask-session/issues/"
Chat = "https://discord.gg/pallets"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "flask_session"
[tool.flit.sdist]
include = [
"docs/",
"requirements/",
"CHANGES.rst",
"LICENSE.rst",
"test_session.py",
]
exclude = ["docs/_build/"]