-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 770 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 770 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
[build-system]
requires = ["setuptools", "wheel"] # Build requirements
build-backend = "setuptools.build_meta"
[project]
name = "m2cwk"
version = "0.1.0"
description = "A Python package for finetuning Qwen2.5-0.5B with LoRA."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Fayzan", email = "fm565@cam.ac.uk" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries"
]
# Runtime dependencies
dependencies = [
"numpy",
"pandas",
"torch",
"transformers"
]
[tool.setuptools.packages.find]
where = ["."]