forked from pyfenn/fenn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (80 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
95 lines (80 loc) · 2.17 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fenn"
version = "0.1.7"
description = "Friendly Environment for Neural Networks (fenn) is a simple framework that automates ML/DL workflows by providing prebuilt trainers, templates, logging, configuration management, and much more."
authors = [
{ name="Alessio Russo", email="alessio.russo@pyfenn.org" },
]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"PyYAML>=6.0.3",
"wandb>=0.23.0",
"numpy>=2,<2.3.0",
"pandas>=2.3.3",
"matplotlib>=3.10.7",
"scikit-learn>=1.7.2",
"colorama>=0.4.6",
"requests>=2.32.5",
"python-dotenv>=1.2.1",
"resend>=2.0.0",
"rich~=13.0.0"
]
requires-python = ">=3.11"
[project.optional-dependencies]
torch = [
"torch>=2.9.1",
"torchvision>=0.24.1"
]
vision = [
"Pillow>=10.0.0",
"torch>=2.9.1",
"torchvision>=0.24.1"
]
transformers = [
"peft ~= 0.18.0",
"transformers ~= 4.57.3"
]
test = [
"pytest>=8.0.0",
"pytest-cov>=7.0.0",
"requests-mock>=1.11.0",
"Faker>=25.0.0"
]
dev = [
"pre-commit>=4.5.1",
"ruff>=0.15.6",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
fenn = "fenn.cli:main"
[project.urls]
"Homepage" = "https://pyfenn.org"
"Documentation" = "https://pyfenn.org"
"Source Code" = "https://github.com/blkdmr/fenn"
"Bug Tracker" = "https://github.com/blkdmr/fenn/issues"
[tool.pytest.ini_options]
testpaths = ["src/tests"]
norecursedirs = ["tests", "venv", ".venv", "__pycache__", "*.egg"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "Q"]
exclude = ["src/fenn/experimental/*"]
[tool.ruff]
include = ["pyproject.toml", "src/**/*.py"]