blob: cf6f82b5e2c964d6762d5f18649900352051a8b7 [file] [log] [blame]
Mohammed Naser12676ed2022-09-15 20:16:15 -04001[tool.poetry]
2name = "atmosphere"
github-actions[bot]92f12192022-12-28 05:29:16 +00003version = "0.13.0"
Mohammed Naser12676ed2022-09-15 20:16:15 -04004description = ""
5authors = ["Mohammed Naser <mnaser@vexxhost.com>"]
6readme = "README.md"
7
Mohammed Naserd531f362022-09-16 11:38:55 -04008[tool.poetry.scripts]
9atmosphere-operator = "atmosphere.cmd.operator:main"
10
Mohammed Naser12676ed2022-09-15 20:16:15 -040011[tool.poetry.dependencies]
12python = "^3.10"
Mohammed Naser9766b482023-01-03 00:51:05 -050013pydantic = { version = "^1.10.4", optional = true }
okozachenko1203fc31dcc2022-12-28 22:32:30 +110014schematics = { version = "^2.1.1", optional = true }
Mohammed Naser71ebfe82022-12-28 05:28:16 +000015pykube-ng = { version = "^22.7.0", optional = true }
16structlog = { version = "^22.1.0", optional = true }
Mohammed Naser71ebfe82022-12-28 05:28:16 +000017taskflow = { version = "^5.0.0", optional = true }
18eventlet = { version = "^0.33.1", optional = true }
19tomli = { version = "^2.0.1", optional = true }
okozachenko1203fc31dcc2022-12-28 22:32:30 +110020jsonnet = { version = "^0.18.0", optional = true }
Mohammed Naser71ebfe82022-12-28 05:28:16 +000021kopf = { version = "^1.36.0", optional = true, extras = ["uvloop"] }
Mohammed Naser34be23d2023-01-20 13:45:28 -050022openstacksdk = "<0.99.0"
Mohammed Naser9766b482023-01-03 00:51:05 -050023validators = { version = "^0.20.0", optional = true }
Mohammed Naser71ebfe82022-12-28 05:28:16 +000024docker-image-py = "^0.1.12"
25
26[tool.poetry.extras]
27operator = [
28 "schematics",
Mohammed Naser9766b482023-01-03 00:51:05 -050029 "pydantic",
Mohammed Naser71ebfe82022-12-28 05:28:16 +000030 "pykube-ng",
31 "structlog",
Mohammed Naser71ebfe82022-12-28 05:28:16 +000032 "taskflow",
33 "eventlet",
34 "tomli",
35 "jsonnet",
36 "kopf",
Mohammed Naser9766b482023-01-03 00:51:05 -050037 "validators",
Mohammed Naser71ebfe82022-12-28 05:28:16 +000038]
Mohammed Naser12676ed2022-09-15 20:16:15 -040039
40[tool.poetry.group.dev.dependencies]
Mohammed Naser71ebfe82022-12-28 05:28:16 +000041ansible-core = "^2.13.4"
Mohammed Naser491bbd62022-09-15 21:03:41 -040042flake8 = "^5.0.4"
43flake8-isort = "^4.2.0"
Mohammed Naser9766b482023-01-03 00:51:05 -050044hypothesis = "6.61.0"
Mohammed Naser71ebfe82022-12-28 05:28:16 +000045jmespath = "^1.0.1"
Mohammed Naser9766b482023-01-03 00:51:05 -050046molecule = "^4.0.1"
Mohammed Naser71ebfe82022-12-28 05:28:16 +000047pytest = "^7.1.3"
48pytest-cov = "^3.0.0"
Mohammed Naser71ebfe82022-12-28 05:28:16 +000049pytest-mock = "^3.8.2"
Mohammed Naser71ebfe82022-12-28 05:28:16 +000050tomli-w = "^1.0.0"
Mohammed Naser9766b482023-01-03 00:51:05 -050051responses = "^0.22.0"
Mohammed Naser21d55812023-01-13 21:28:47 +000052pytest-forked = "^1.4.0"
53pytest-xdist = "^3.1.0"
Mohammed Naserc45b71c2022-11-01 16:06:26 -040054
55[tool.poetry.group.docs.dependencies]
56mkdocs-material = "^8.5.7"
57
Mohammed Naser12676ed2022-09-15 20:16:15 -040058[build-system]
59requires = ["poetry-core"]
60build-backend = "poetry.core.masonry.api"
61
Mohammed Nasera45e7d02022-09-16 16:43:31 -040062[tool.isort]
63profile = "black"
64
Mohammed Naser12676ed2022-09-15 20:16:15 -040065[tool.pytest.ini_options]
Mohammed Naser71ebfe82022-12-28 05:28:16 +000066addopts = ["--cov=atmosphere", "--cov-report=term-missing"]
Mohammed Naser12676ed2022-09-15 20:16:15 -040067filterwarnings = [
Mohammed Naser01ccc492022-09-26 20:26:43 -040068 "ignore::DeprecationWarning",
Mohammed Naser124a9bc2022-09-19 15:13:16 -040069 "ignore::schematics.deprecated.SchematicsDeprecationWarning",
70 "ignore:The asyncore module is deprecated",
Mohammed Naser12676ed2022-09-15 20:16:15 -040071]
Mohammed Naser124a9bc2022-09-19 15:13:16 -040072
73[tool.vulture]
74paths = ["atmosphere"]