forked from csacca/pyuhoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (34 loc) · 822 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
38
39
40
[tool.poetry]
name = "pyuhoo"
version = "0.0.5"
description = "Python API for talking to uHoo consumer API"
authors = ["Christopher Sacca <csacca@csacca.net>"]
repository = "https://github.com/csacca/pyuhoo"
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
pyuhoo-cli = "pyuhoo.cli:cli"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.7.4"
click = "^8.0.1"
pycryptodome = "^3.10.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
black = "^21.9b0"
isort = "^5.9.3"
mypy = "^0.910"
pre-commit = "^2.15.0"
safety = "^1.10.3"
pytest = "^6.2.5"
pytest-asyncio = "^0.15.1"
[tool.isort]
profile = "black"
[tool.mypy]
pretty = true
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"