forked from GAISSA-UPC/HF_diversity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 864 Bytes
/
pyproject.toml
File metadata and controls
51 lines (42 loc) · 864 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "HF_diversity"
version = "0.0.1"
description = "Exploring the Role of Women in Hugging Face Organizations and Model Success"
authors = [
{ name = "M" },
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
]
requires-python = "~=3.10"
[tool.black]
line-length = 99
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
)/
'''
[tool.ruff.lint.isort]
known_first_party = ["i2rced"]
force_sort_within_sections = true
[tool.poetry]
name = "i2rced"
version = "0.1.0"
description = ""
authors = ["maria"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.2.3"
numpy = "^2.2.1"
scikit-learn = "^1.6.0"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
pylint = "^3.3.3"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"