dryymatt commited on
Commit
fce3b04
·
verified ·
1 Parent(s): 3762b57

Upload pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +44 -0
pyproject.toml ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "litehat"
7
+ version = "1.0.0"
8
+ description = "Litehat — The Sovereign Universal Maker. I don't just write code; I launch reality."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Litehat Sovereign Core"}
14
+ ]
15
+ keywords = ["agent", "autonomous", "code-generation", "deployment", "kubernetes", "wizard"]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ ]
25
+
26
+ dependencies = [
27
+ "torch>=2.1.0",
28
+ "numpy>=1.24.0",
29
+ "httpx>=0.25.0",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ full = [
34
+ "playwright>=1.40.0",
35
+ "docker>=6.0.0",
36
+ "kubernetes>=28.0.0",
37
+ ]
38
+
39
+ [project.scripts]
40
+ litehat = "litehat.__main__:main"
41
+
42
+ [project.urls]
43
+ Homepage = "https://huggingface.co/dryymatt/Litehat-Universal-Engine"
44
+ Repository = "https://huggingface.co/dryymatt/Litehat-Universal-Engine"