-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.16 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
[tool.poetry]
name = "irc-blowfish"
version = "1.0.0"
description = "IRC Blowfish library"
authors = ["IceN9ne <[email protected]>"]
license = "MIT"
homepage = "https://github.com/IceN9ne/irc-blowfish-python"
repository = "https://github.com/IceN9ne/irc-blowfish-python"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
]
packages = [
{ include = "irc_blowfish", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9"
cryptography = "^3.3.1"
more-itertools = "^8.6.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.4"
flake8-bugbear = "^21.3.1"
flake8-comprehensions = "^3.3.1"
flake8-isort = "^4.0.0"
flake8-mutable = "^1.2.0"
flake8-pytest-style = "^1.3.0"
flake8-use-fstring = "^1.1"
isort = "^5.7.0"
mypy = "^0.812"
pre-commit = "^2.9.3"
pytest = "^6.2.1"
pytest-mock = "^3.5.1"
[tool.isort]
profile="black"
src_paths="src"
line_length=120
[tool.black]
line-length = 120
target-version = ["py38"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"