-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
53 lines (50 loc) · 1.23 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
51
52
53
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "Flask-MAB"
version = "3.0.1"
authors = [
{name = "Mark Grey", email = "mark.asperia@gmail.com"}
]
description = "Multi-armed bandits for flask"
readme = "README.rst"
requires-python = ">=3.9"
dependencies = [
"Flask>=2.2.5",
"flask-debugtoolbar==0.15.1",
]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.optional-dependencies]
dev = [
"black==24.8.0",
"pytest==8.3.2",
"mock==5.1.0",
"sphinx-pyproject==0.3.0",
"sphinx==8.0.2",
"Pallets-Sphinx-Themes==2.1.3",
"tox==4.17.1"
]
[tool.sphinx-pyproject]
github_username = "DeaconDesperado"
github_repository = "flask_mab"
author = "Mark Grey"
project = "flask_mab"
package_root = "flask_mab"
language = "en"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"pallets_sphinx_themes"
]
templates_path = [ "_templates",]
source_suffix = ".rst"
html_theme = 'flask'