-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (51 loc) · 1.33 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
# See: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[project]
name = "ferry"
version = "1.0"
description = "A crawler for Yale courses and evaluation data. Integrates with CourseTable."
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4==4.12.3",
"black==24.4.2",
"diskcache==5.6.3",
"edlib==1.3.9.post1",
"eralchemy2==1.4.1",
"httpx==0.27.0",
"lxml==5.3.0",
"networkx==3.4.2",
"pandas==2.2.3",
"psycopg2==2.9.10",
"PyYAML==6.0.2",
"sentry-sdk==2.18.0",
"sqlalchemy-mixins==2.0.5",
"sqlalchemy==2.0.27",
"textdistance==4.5.0",
"tqdm==4.66.4",
"ujson==5.10.0",
"unidecode==1.3.6",
"uvloop==0.19.0",
"vadersentiment==3.3.2",
]
[tool.setuptools]
packages = ["ferry"]
[tool.black]
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#labels-line-length
line-length = 88
target-version = ["py312"]
[tool.pyright]
include = ["."]
exclude = ["legacy"]
# TODO: use strict
typeCheckingMode = "standard"
pythonVersion = "3.12"
pythonPlatform = "Linux"
reportImplicitOverride = true
reportImplicitStringConcatenation = true
reportMissingSuperCall = true
reportPropertyTypeMismatch = true
reportShadowedImports = true
reportUnnecessaryTypeIgnoreComment = true
# TODO
reportUnknownArgumentType = "none"
reportUnknownMemberType = "none"
reportUnknownVariableType = "none"