2021-07-05 22:23:08 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "tutor"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = ""
|
|
|
|
authors = ["Correl Roush <correl@gmail.com>"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.9"
|
|
|
|
tornado = "^6.1"
|
|
|
|
click = "^8.0.1"
|
2021-07-07 02:42:35 +00:00
|
|
|
humanize = "^3.10.0"
|
2021-07-06 03:54:39 +00:00
|
|
|
httpx = "^0.18.2"
|
2021-07-14 21:12:03 +00:00
|
|
|
parsy = "^1.3.0"
|
2023-07-18 03:53:42 +00:00
|
|
|
jsonschema = "4.17"
|
2022-07-24 05:36:29 +00:00
|
|
|
jsonslicer = "^0.1.7"
|
|
|
|
tqdm = "^4.64.0"
|
2022-08-03 21:21:55 +00:00
|
|
|
psycopg = {extras = ["c", "pool"], version = "^3.0"}
|
2022-09-27 23:19:28 +00:00
|
|
|
tornado-openapi3 = "^1.1.0"
|
|
|
|
PyYAML = "^6.0"
|
2023-02-14 04:30:42 +00:00
|
|
|
returns = "^0.19.0"
|
2024-02-09 03:51:31 +00:00
|
|
|
arrow = "^1.3.0"
|
2021-07-05 22:23:08 +00:00
|
|
|
|
2021-07-07 02:42:35 +00:00
|
|
|
[tool.poetry.scripts]
|
2021-07-16 00:51:33 +00:00
|
|
|
tutor = 'tutor.cli:main'
|
2021-07-07 02:42:35 +00:00
|
|
|
|
2023-02-14 04:30:42 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2023-02-14 04:36:48 +00:00
|
|
|
pytest = "*"
|
2023-02-14 05:11:26 +00:00
|
|
|
pytest-mypy = "*"
|
2023-02-14 04:36:48 +00:00
|
|
|
black = "*"
|
|
|
|
mypy = "*"
|
|
|
|
types-pyyaml = "^6.0"
|
2023-02-24 04:18:43 +00:00
|
|
|
hypothesis = "^6.68.2"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = "--mypy"
|
|
|
|
filterwarnings = """
|
|
|
|
ignore::DeprecationWarning:openapi_core.*:
|
|
|
|
ignore::DeprecationWarning:openapi_schema_validator.*:
|
|
|
|
ignore::DeprecationWarning:openapi_spec_validator.*:
|
|
|
|
ignore::DeprecationWarning:jsonschema.*:
|
|
|
|
"""
|
2023-02-14 04:30:42 +00:00
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
plugins = "returns.contrib.mypy.returns_plugin"
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "humanize"
|
|
|
|
ignore_missing_imports = true
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "parsy"
|
|
|
|
ignore_missing_imports = true
|
|
|
|
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "tqdm"
|
|
|
|
ignore_missing_imports = true
|
|
|
|
|
2021-07-05 22:23:08 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|