Initial commit

This commit is contained in:
2025-09-27 12:02:22 +08:00
commit a4443765ee
33 changed files with 3896 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import re
from setuptools import find_packages, setup
with open("requirements.txt") as f:
required = [line for line in f.read().splitlines()
if line and re.match(r'^[^=]+==[^=]+$', line.strip())]
setup(
name="khaosz",
version="1.2.0",
packages=find_packages(),
install_requires=required,
dependency_links=[
"https://download.pytorch.org/whl/cu126",
],
python_requires="==3.12.*",
)