File size: 3,291 Bytes
eca5751
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "nexus-coder"
version = "0.4.0"
description = "Nexus Coder v0.4 - CyberForge edition. MoE 423B/39B + 3M context + CyberGym training. Created by Hieu Louis."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
    {name = "Hieu Louis", email = "mhieuhonda@users.noreply.github.com"}
]
requires-python = "==3.12.13"
dependencies = [
    "torch>=2.0.0",
    "numpy>=1.24.0",
    "tqdm>=4.65.0",
    "pyyaml>=6.0",
    "datasets>=2.14.0",
    "requests>=2.31.0",
    "cryptography>=41.0.0",
]
keywords = ["ai", "llm", "moe", "mixture-of-experts", "transformer", "nexus", "agent", "skills", "tools", "cyberforge", "cybergym"]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "Intended Audience :: Science/Research",
    "License :: Other/Proprietary License",
    "Programming Language :: Python :: 3.12",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
]

[project.optional-dependencies]
dev = ["pytest>=7.0", "black", "flake8", "ruff"]
gpu = ["flash-attn>=2.0.0", "bitsandbytes>=0.41.0", "triton>=2.0.0"]
data = ["datasets>=2.14.0", "datasketch>=1.6.0", "langdetect>=1.0.9"]
tools = ["ruff>=0.1.0", "black>=23.0.0", "isort>=5.12.0", "sqlparse>=0.4.4", "jsbeautifier>=1.14.0"]
crypto = ["cryptography>=41.0.0", "pyjwt>=2.8.0"]
database = [
    "sqlalchemy>=2.0.0",
    "psycopg2-binary>=2.9.0",
    "pymysql>=1.1.0",
    "redis>=5.0.0",
    "pymongo>=4.5.0",
    "elasticsearch>=8.0.0",
    "kafka-python>=2.0.2",
    "pika>=1.3.0",
]
web = [
    "aiohttp>=3.9.0",
    "websockets>=12.0",
    "grpcio>=1.59.0",
    "beautifulsoup4>=4.12.0",
    "lxml>=4.9.0",
]
devops = ["paramiko>=3.4.0", "kubernetes>=28.1.0", "docker>=7.0.0"]
media = ["Pillow>=10.0.0", "reportlab>=4.0.0", "markdown>=3.5.0"]
ml = ["scikit-learn>=1.3.0", "scipy>=1.11.0", "transformers>=4.35.0", "accelerate>=0.24.0", "peft>=0.6.0", "lm-eval>=0.3.0"]
distributed = ["deepspeed>=0.12.0", "accelerate>=0.24.0", "flash-attn>=2.0.0"]
all = [
    "flash-attn>=2.0.0",
    "bitsandbytes>=0.41.0",
    "triton>=2.0.0",
    "datasets>=2.14.0",
    "datasketch>=1.6.0",
    "langdetect>=1.0.9",
    "ruff>=0.1.0",
    "black>=23.0.0",
    "isort>=5.12.0",
    "sqlparse>=0.4.4",
    "jsbeautifier>=1.14.0",
    "cryptography>=41.0.0",
    "pyjwt>=2.8.0",
    "aiohttp>=3.9.0",
    "websockets>=12.0",
    "grpcio>=1.59.0",
    "beautifulsoup4>=4.12.0",
    "lxml>=4.9.0",
    "sqlalchemy>=2.0.0",
    "psycopg2-binary>=2.9.0",
    "pymysql>=1.1.0",
    "redis>=5.0.0",
    "pymongo>=4.5.0",
    "elasticsearch>=8.0.0",
    "kafka-python>=2.0.2",
    "pika>=1.3.0",
    "paramiko>=3.4.0",
    "kubernetes>=28.1.0",
    "docker>=7.0.0",
    "Pillow>=10.0.0",
    "reportlab>=4.0.0",
    "markdown>=3.5.0",
    "scikit-learn>=1.3.0",
    "scipy>=1.11.0",
    "transformers>=4.35.0",
    "accelerate>=0.24.0",
    "peft>=0.6.0",
]

[project.urls]
Homepage = "https://github.com/mhieuhonda/NexusCoder"
Repository = "https://github.com/mhieuhonda/NexusCoder"
Issues = "https://github.com/mhieuhonda/NexusCoder/issues"
Changelog = "https://github.com/mhieuhonda/NexusCoder/blob/main/CHANGELOG.md"

[tool.setuptools.packages.find]
include = ["nexus*"]