-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (67 loc) · 1.68 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
[build-system]
requires = ["setuptools >= 68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dqc-toolkit"
version = "0.2.0"
authors = [
{ name="Sumanth S Prabhu", email="[email protected]" },
]
description = "Data Quality Check for Machine Learning"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
dependencies = [
"transformers>=4.39",
"sentence_transformers>=2.6.1",
"datasets>=2.18",
"accelerate>=0.34.2",
"scikit-learn>=1.3.2",
"ruff>=0.3.4"
]
keywords = [
"nlp",
"data curation",
"machine learning"
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[project.optional-dependencies]
docs = [
"mkdocs==1.5.3",
"mkdocs-material==9.5.17",
"mkdocstrings[python]==1.9.2",
"mkdocstrings-crystal==0.3.7",
"mike==2.0.0"
]
test = [
"pytest>=8.1.1"
]
dev = [
"pytest>=8.1.1",
"mkdocs==1.5.3",
"mkdocs-material==9.5.17",
"mkdocstrings[python]==0.24.3",
"mkdocstrings-crystal==0.3.7"
]
[project.urls]
Homepage = "https://github.com/sumanthprabhu/DQC-Toolkit"
Source = "https://github.com/sumanthprabhu/DQC-Toolkit"
Tracker = "https://github.com/sumanthprabhu/DQC-Toolkit/issues"
[tool.setuptools.packages.find]
exclude=["notebooks", "docs"]
[tool.ruff]
lint.ignore = [
"F401", # Ignore 'unused import' error
]