-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (75 loc) · 1.53 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "ditti-bot"
version = "0.1.0"
description = "ditti bot"
authors = ["Alex Paden"]
license = "MIT"
packages = [{include = "ditti"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
farcaster = "^0.7.7"
fonts = "^0.0.3"
Pillow = "^9.5.0"
protobuf = "^4.22.1"
pytest = "^7.2.1"
python-dotenv = "^0.21.1"
requests = "^2.28.2"
supabase = "^1.0.0"
google-cloud-translate = "^3.11.1"
openai = "^0.27.4"
pyupgrade = "^3.3.1"
isort = "^5.12.0"
black = "^23.1.0"
pytest-cov = "^4.0.0"
flake8 = "^6.0.0"
mypy = "^1.1.1"
types-pillow = "^9.4.0.17"
types-requests = "^2.28.11.17"
autoflake = "^2.0.2"
bs4 = "^0.0.1"
emoji = "^2.2.0"
gql = "^3.4.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
# https://github.com/psf/black
target-version = ["py310"]
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = 310
line_length = 88
known_typing = ["typing", "types", "typing_extensions", "mypy", "mypy_extensions"]
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
include_trailing_comma = true
profile = "black"
multi_line_output = 3
indent = 4
color_output = true
[tool.flake8]
ignore = ['E231', 'E241']
per-file-ignores = [
'__init__.py:F401',
]
max-line-length = 88
count = true
[tool.coverage-badge]
skip-covered = true