FerrellSyntheticIntelligence commited on
Commit
1ac8d98
·
1 Parent(s): 0cbd53c

Chore: Temporarily hide metadata to bypass build conflict

Browse files
Files changed (2) hide show
  1. pyproject.toml.bak +21 -0
  2. setup.py.bak +18 -0
pyproject.toml.bak ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "vitalis_core"
7
+ version = "1.0.0"
8
+ authors = [
9
+ { name="Neuro_Nomad" },
10
+ ]
11
+ description = "A sovereign, CPU-only, Free-Energy Synthetic Intelligence organism."
12
+ readme = "README.md"
13
+ requires-python = ">=3.11"
14
+ dependencies = [
15
+ "numpy>=1.26",
16
+ "rich>=15.0",
17
+ "pyyaml>=6.0",
18
+ ]
19
+
20
+ [project.scripts]
21
+ vitalis-fsi = "run_vitalis:main"
setup.py.bak ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="vitalis_core",
5
+ version="1.0.0",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "numpy",
9
+ "huggingface_hub",
10
+ "pyyaml",
11
+ "click"
12
+ ],
13
+ entry_points={
14
+ "console_scripts": [
15
+ "vitalis=vitalis.__main__:cli"
16
+ ]
17
+ },
18
+ )