File size: 767 Bytes
a20151e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "LMC-of-MoE"
version = "0.3.1"
description = "Linear Mode Connectivity experiments with Mixture-of-Experts models"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
    { name = "Your Name", email = "you@example.com" }
]
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]

[project.urls]
"Homepage" = "https://github.com/yourname/LMC-of-MoE"
"Source" = "https://github.com/yourname/LMC-of-MoE"

[tool.setuptools.packages.find]
where = ["./"]

[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }