-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 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
[tool.poetry]
name = "flask-pyctuator"
version = "0.1.1"
description = "Flask Extension for using Pyctuator to enable Spring Boot Admin (SBA) to monitor the application, see https://github.com/SolarEdgeTech/pyctuator"
authors = ["michael.yak <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/SolarEdgeTech/flask-pyctuator"
repository = "https://github.com/SolarEdgeTech/flask-pyctuator"
keywords = ["spring boot admin", "actuator", "pyctuator", "flask"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
"Typing :: Typed",
"License :: OSI Approved :: Apache Software License",
]
[tool.poetry.dependencies]
python = "^3.7"
pyctuator = "^0.17.0"
flask = "^1.1"
[tool.poetry.dev-dependencies]
mypy = "^0.910.0"
pylint = "^2.11.1"
autopep8 = "^1.4"
[tool.poetry.extras]
psutil = ["psutil"]
db = ["sqlalchemy", "PyMySQL", "cryptography"]
redis = ["redis"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"