-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 844 Bytes
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
[project]
name = "pattern_aware_filtering"
description = "pattern_aware_filtering"
version = "0.0.1"
requires-python = ">=3.11,<3.12"
authors = [{name = "Chanwoo Park", email = "99chanwoo@snu.ac.kr"}, {name = "Jaejin Lee", email = "jaejin@snu.ac.kr"}]
readme = "README.md"
dependencies = [
"numpy",
"fasttext",
"warcio",
"tqdm",
"requests"
]
[tool.setuptools.packages.find]
include = ["pattern_aware_filtering*"]
[project.urls]
Homepage = "https://champ.snu.ac.kr/"
Repository = "https://github.com/mcrl/pattern-aware-filtering"
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"cuda: tests that require cuda devices (deselect with '-m \"not cuda\"')",
"skip: tests that should be skipped (deselect with '-m \"not skip\"')",
]