Aasher commited on
Commit
4354e29
·
0 Parent(s):

init project

Browse files
Files changed (5) hide show
  1. .gitignore +36 -0
  2. .python-version +1 -0
  3. README.md +0 -0
  4. pyproject.toml +7 -0
  5. src/axiom/__init__.py +0 -0
.gitignore ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ build/
9
+ develop-eggs/
10
+ dist/
11
+ downloads/
12
+ eggs/
13
+ .eggs/
14
+ lib/
15
+ lib64/
16
+ parts/
17
+ sdist/
18
+ var/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtual Environment
24
+ venv/
25
+ .venv/
26
+ ENV/
27
+ .env
28
+
29
+ # IDE
30
+ .idea/
31
+ .vscode/
32
+ *.swp
33
+ *.swo
34
+
35
+ # Project specific
36
+ test_axiom/
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.11
README.md ADDED
File without changes
pyproject.toml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "axiom-2-0"
3
+ version = "0.1.0"
4
+ description = "An Advanced version of Axiom Agent"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ dependencies = []
src/axiom/__init__.py ADDED
File without changes