forked from flask-extensions/Flask-GoogleMaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.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.2"
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/KashaMalaga/Flask3-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.6"
flask = ">=0.10"
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.12.3"
dynaconf = "^3.1.2"
flake8 = "^3.7.9"
black = "^20.8b1"
gitchangelog = "^3.0.4"
pylint = "^2.4.4"
Pygments = "^2.6.1"
pytest = "^5.4.1"
pytest-cov = "^2.8.1"
mypy = "^0.790"
[build-system]
requires = ["poetry>=1.1.2"]
build-backend = "poetry.masonry.api"