-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
60 lines (53 loc) · 1.41 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "raid-bench"
dynamic = ["version"]
authors = [
{ name = "Liam Dugan", email = "[email protected]" },
{ name = "Andrew Zhu", email = "[email protected]" },
]
description = "RAID is the largest and most challenging benchmark for machine-generated text detectors."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
# https://pypi.org/classifiers/
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24.0,<1.26.0",
"pandas~=2.0.3",
"scikit-learn~=1.3.2",
"tqdm",
]
[project.urls]
"Homepage" = "https://github.com/liamdugan/raid"
"Bug Tracker" = "https://github.com/liamdugan/raid/issues"
[tool.hatch]
# to bump version:
# $ hatch version [major|minor|patch]
version.path = "raid/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["raid"]
[tool.hatch.build.targets.sdist]
exclude = [
"/leaderboard",
"/web"
]
[tool.black]
line-length = 120
preview = true
[tool.isort]
profile = "black"
skip_gitignore = true
line_length = 120
known_first_party = ["raid"]
no_lines_before = "LOCALFOLDER"
reverse_relative = true
combine_as_imports = true