forked from SolarEdgeTech/pyctuator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (61 loc) · 2.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "pyctuator"
version = "0.16.0"
description = "A Python implementation of the Spring Actuator API for popular web frameworks"
authors = [
"Michael Yakobi <[email protected]>",
"Inbal Levi <[email protected]>",
"Yanay Reingewertz <[email protected]>",
"Matan Rubin <[email protected]>"
]
maintainers = [
"Matan Rubin <[email protected]>",
"Michael Yakobi <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/SolarEdgeTech/pyctuator"
repository = "https://github.com/SolarEdgeTech/pyctuator"
keywords = ["spring boot admin", "actuator", "pyctuator", "fastapi", "flask", "aiohttp"]
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"
psutil = { version = "^5.6", optional = true }
flask = { version = "^1.1", optional = true }
fastapi = { version = ">=0.41.0, <1.0.0", optional = true }
uvicorn = { version = ">=0.9.0, <1.0.0", optional = true }
sqlalchemy = {version = "^1.3", optional = true}
PyMySQL = {version = "^0.9.3", optional = true}
cryptography = {version = ">=2.8,<4.0", optional = true}
redis = {version = "^3.3", optional = true}
aiohttp = {version = "^3.6.2", optional = true}
tornado = {version = "^6.0.4", optional = true}
[tool.poetry.dev-dependencies]
requests = "^2.22"
pytest = "^3.0"
mypy = "^0.730.0"
pylint = "~2.4.4" # v2.5 does not properly run on docker image...
pytest-cov = "^2.8"
autopep8 = "^1.4"
[tool.poetry.extras]
psutil = ["psutil"]
fastapi = ["fastapi", "uvicorn"]
flask = ["flask"]
aiohttp = ["aiohttp"]
tornado = ["tornado"]
db = ["sqlalchemy", "PyMySQL", "cryptography"]
redis = ["redis"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"