-
Notifications
You must be signed in to change notification settings - Fork 67
/
pyproject.toml
79 lines (67 loc) · 2.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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "skll"
dynamic = ["version", "dependencies"]
requires-python = ">= 3.10"
authors = [
{name = "Nitin Madnani ", email = "[email protected]"},
]
maintainers = [
{name = "Nitin Madnani ", email = "[email protected]"},
{name = "Tamar Lavee", email = "[email protected]"}
]
description = "SciKit-Learn Laboratory makes it easier to run machine learning experiments with scikit-learn."
readme = "README.rst"
license = {file = "LICENSE.txt"}
keywords = ["learning scikit-learn"]
classifiers= [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Documentation = "https://skll.readthedocs.org"
Repository = "http://github.com/EducationalTestingService/skll"
[project.scripts]
filter_features = "skll.utils.commandline.filter_features:main"
generate_predictions = "skll.utils.commandline.generate_predictions:main"
join_features = "skll.utils.commandline.join_features:main"
print_model_weights = "skll.utils.commandline.print_model_weights:main"
run_experiment = "skll.utils.commandline.run_experiment:main"
skll_convert = "skll.utils.commandline.skll_convert:main"
summarize_results = "skll.utils.commandline.summarize_results:main"
compute_eval_from_predictions = "skll.utils.commandline.compute_eval_from_predictions:main"
plot_learning_curves = "skll.utils.commandline.plot_learning_curves:main"
[tool.setuptools.dynamic]
version = {attr = "skll.version.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests", "examples"]
namespaces = false
[tool.ruff]
lint.select = ["D", "E", "F", "I"]
lint.ignore = ["D212"]
line-length = 100
target-version = "py311"
fix = true
[tool.ruff.lint.per-file-ignores]
"tests/test*.py" = ["D"]
"tests/test_input.py" = ["E501"]
"skll/data/featureset.py" = ["E501"]
"skll/learner/__init__.py" = ["E501"]
"skll/learner/voting.py" = ["E501"]
"skll/learner/utils.py" = ["E501"]