SixpertAI commited on
Commit
9d5f7a1
·
verified ·
1 Parent(s): 094eb79

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +58 -0
pyproject.toml ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sixpert-k2"
7
+ version = "1.0.0"
8
+ description = "Sixpert K2 - Deep Reasoning Engine. A Mixture-of-Experts (MoE) multimodal language model with ~8.9B total parameters and ~1.2B active per token. Optimized for deep reasoning, long-context understanding, and complex agentic workflows."
9
+ readme = "README.md"
10
+ license = {text = "Apache-2.0"}
11
+ authors = [
12
+ {name = "Inyang David"},
13
+ {name = "Sixtus Matthew"},
14
+ ]
15
+ keywords = ["llm", "ai", "moe", "mixture-of-experts", "reasoning", "multimodal", "gguf", "sixpert"]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Intended Audience :: Developers",
19
+ "Intended Audience :: Science/Research",
20
+ "License :: OSI Approved :: Apache Software License",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
26
+ ]
27
+ requires-python = ">=3.10"
28
+ dependencies = [
29
+ "transformers>=4.46.0",
30
+ "torch>=2.1.0",
31
+ "llama-cpp-python>=0.3.0",
32
+ "gguf>=0.6.0",
33
+ ]
34
+
35
+ [project.optional-dependencies]
36
+ dev = [
37
+ "pytest>=7.0",
38
+ "pytest-asyncio",
39
+ "black",
40
+ "ruff",
41
+ ]
42
+ api = [
43
+ "fastapi>=0.100.0",
44
+ "uvicorn>=0.24.0",
45
+ "pydantic>=2.0",
46
+ ]
47
+
48
+ [project.urls]
49
+ Homepage = "https://huggingface.co/Sixtusmsdba/SixpertK2"
50
+ Repository = "https://huggingface.co/Sixtusmsdba/SixpertK2"
51
+ Documentation = "https://huggingface.co/Sixtusmsdba/SixpertK2#documentation"
52
+
53
+ [tool.setuptools.packages.find]
54
+ include = ["sixpert*"]
55
+
56
+ [tool.ruff]
57
+ line-length = 100
58
+ target-version = "py310"