-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (30 loc) · 915 Bytes
/
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
[tool.poetry]
name = "comis"
version = "0.1.1"
description = "comis, the simplest way to create a reddit bot"
authors = ["Endercheif"]
packages = [{ "include" = "comis" }]
readme = "README.md"
documentation = "https://comis.readthedocs.io/en/latest"
repository = "https://github.com/Endercheif/comis"
[tool.poetry.dependencies]
python = "^3.9"
PyYAML = "^6.0"
asyncpraw = "^7.5.0"
Sphinx = {version = "^4.5.0", optional = true}
sphinx-autodoc-typehints = {version = "^1.18.1", optional = true}
pydata-sphinx-theme = {version = "^0.8.1", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
mypy = "^0.941"
black = "^22.3.0"
isort = "^5.10.1"
python-dotenv = "^0.20.0"
flake8 = "^4.0.1"
[tool.poetry.extras]
docs = ["Sphinx", "pydata-sphinx-theme", "sphinx-autodoc-typehints"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"