-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.1 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
[build-system]
requires = [
"hatchling",
"versioningit",
]
build-backend = "hatchling.build"
[project]
name = "wtforms-widgets"
authors = [{ name = "The Pycroft Authors" }]
description = "Decorator driven wtforms extension with Bootstrap 5 support for Flask"
readme = "README.md"
requires-python = ">= 3.5"
dependencies = [
'Flask',
'Flask-WTF',
'MarkupSafe',
'WTForms',
]
license = { text = "Apache Software License" }
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
dynamic = ["version"]
[project.optional-dependencies]
sql = ["WTForms-SQLAlchemy"]
[project.urls]
Repository = "http://github.com/agdsn/wtforms-widgets/"
Issues = "http://github.com/agdsn/wtforms-widgets/issues"
[tool.hatch.version]
source = "versioningit"