-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (68 loc) · 1.18 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
[metadata]
name = 'openbooru_api'
version = 'Lithium'
author = 'Ben Brady'
author_email = '[email protected]'
[options]
install_requires = [
"wheel",
"requests",
"requests-futures",
"numpy",
"tqdm",
"anyio",
"coloredlogs",
"iso639",
"python-multipart",
"cachetools",
"pymongo",
"jinja2",
"boto3",
"pickledb",
# fastpi
"fastapi",
"uvicorn[standard]",
"pydantic",
"fastapi-cache2[memcache]",
# Encoding
"pillow",
"ffmpeg-python",
"python-magic",
"imagehash",
# Cryptography
"cryptography",
"pyotp",
"pyjwt",
"passlib[argon2]>=1.7.4",
"zxcvbn",
"argon2-cffi",
"password-strength",
# Parsing
"python-box",
"ujson",
"ijson",
"bs4",
"lxml",
"hydrus_api",
"pytumblr",
"tweepy>=4.10.0",
"e621==0.0.6",
# 0.0.7 causes errors
"pytube",
]
[options.extras_require]
dev = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-timeout",
"httpx",
"schemathesis",
]
[tool.black]
line-length = 80
target-version = ['py310']
include = '\.pyi?$'
exclude-files = '__init__.py'
[tool.mypy]
ignore_missing_imports = true