-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 907 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 907 Bytes
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
[project]
name = "flask-fontawesome"
version = "0.2.0"
description = "Flask extension for FontAwesome"
authors = [
{name = "heartsucker",email = "heartsucker@autistici.org"}
]
license = {text = "MIT/Apache"}
readme = "README.md"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
]
requires-python = ">=3.9"
dependencies = [
"flask (>=3.1.1,<4.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.3.0"
bandit = "^1.8.5"
pallets-sphinx-themes = "^2.3.0"
sphinx = "7.4.7"
tox = "^4.27.0"