-
Notifications
You must be signed in to change notification settings - Fork 196
/
pyproject.toml
49 lines (46 loc) · 1.33 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
[tool.poetry]
name = "flask_googlemaps"
version = "0.4.1"
description = "Easy way to add GoogleMaps to Flask Applications"
authors = ["Riverfount - Vulgo Vicente Marçal <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/flask-extensions/Flask-GoogleMaps"
homepage = "https://flaskextensions.com"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
packages = [
{include = "flask_googlemaps"}
]
include = ["flask_googlemaps/py.typed"]
[tool.poetry.dependencies]
python = ">=3.9"
flask = "<3.0.0"
pre-commit = "1.21.0"
mkdocs = "^1.1"
mkdocs-material = "^5.0.2"
mkdocs-minify-plugin = "^0.3.0"
requests = "^2.25.1"
[tool.poetry.dev-dependencies]
ipdb = "^0.13.3"
dynaconf = "^3.2.5"
flake8 = "^7.0.0"
black = "^24.4.0"
gitchangelog = "^3.0.4"
pylint = "^3.1.0"
Pygments = "^2.17.2"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
mypy = "^1.9.0"
[build-system]
requires = ["poetry>=1.8.2"]
build-backend = "poetry.masonry.api"