everos 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- everos-0.1.0/.gitignore +130 -0
- everos-0.1.0/PKG-INFO +9 -0
- everos-0.1.0/README.md +1 -0
- everos-0.1.0/pyproject.toml +17 -0
- everos-0.1.0/src/everos/__init__.py +1 -0
everos-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
privates/
|
|
2
|
+
main
|
|
3
|
+
audits/
|
|
4
|
+
|
|
5
|
+
dlab/information/dlab-accounts.md
|
|
6
|
+
|
|
7
|
+
# 生成
|
|
8
|
+
generated/
|
|
9
|
+
stainless-sdk-demo/
|
|
10
|
+
evermemos-python/
|
|
11
|
+
output/
|
|
12
|
+
|
|
13
|
+
# agent
|
|
14
|
+
.env
|
|
15
|
+
# Python
|
|
16
|
+
__pycache__/
|
|
17
|
+
*.py[cod]
|
|
18
|
+
*$py.class
|
|
19
|
+
*.so
|
|
20
|
+
.Python
|
|
21
|
+
build/
|
|
22
|
+
develop-eggs/
|
|
23
|
+
dist/
|
|
24
|
+
downloads/
|
|
25
|
+
eggs/
|
|
26
|
+
.eggs/
|
|
27
|
+
# lib/
|
|
28
|
+
lib64/
|
|
29
|
+
parts/
|
|
30
|
+
sdist/
|
|
31
|
+
var/
|
|
32
|
+
wheels/
|
|
33
|
+
*.whl
|
|
34
|
+
*.egg-info/
|
|
35
|
+
.installed.cfg
|
|
36
|
+
*.egg
|
|
37
|
+
MANIFEST
|
|
38
|
+
|
|
39
|
+
# java
|
|
40
|
+
*.class
|
|
41
|
+
|
|
42
|
+
# Virtual environments
|
|
43
|
+
venv/
|
|
44
|
+
env/
|
|
45
|
+
ENV/
|
|
46
|
+
.venv/
|
|
47
|
+
.env/
|
|
48
|
+
|
|
49
|
+
# Claude Code 本地设置(频繁自动变更,无需跟踪)
|
|
50
|
+
.claude/settings.local.json
|
|
51
|
+
|
|
52
|
+
# IDE
|
|
53
|
+
.vscode/
|
|
54
|
+
.idea/
|
|
55
|
+
*.swp
|
|
56
|
+
*.swo
|
|
57
|
+
*~
|
|
58
|
+
.obsidian/
|
|
59
|
+
|
|
60
|
+
# OS
|
|
61
|
+
.DS_Store
|
|
62
|
+
.DS_Store?
|
|
63
|
+
._*
|
|
64
|
+
.Spotlight-V100
|
|
65
|
+
.Trashes
|
|
66
|
+
ehthumbs.db
|
|
67
|
+
Thumbs.db
|
|
68
|
+
*.sqlite3
|
|
69
|
+
|
|
70
|
+
# Logs
|
|
71
|
+
# *.log
|
|
72
|
+
# logs/
|
|
73
|
+
|
|
74
|
+
# Node.js
|
|
75
|
+
node_modules/
|
|
76
|
+
npm-debug.log*
|
|
77
|
+
yarn-debug.log*
|
|
78
|
+
yarn-error.log*
|
|
79
|
+
.pnpm-debug.log*
|
|
80
|
+
node_modules/
|
|
81
|
+
|
|
82
|
+
# Temporary files
|
|
83
|
+
*.tmp
|
|
84
|
+
*.temp
|
|
85
|
+
.cache/
|
|
86
|
+
*.pem
|
|
87
|
+
|
|
88
|
+
# Database
|
|
89
|
+
*.db
|
|
90
|
+
*.sqlite
|
|
91
|
+
*.sqlite3
|
|
92
|
+
volumes
|
|
93
|
+
|
|
94
|
+
# Jupyter Notebook
|
|
95
|
+
.ipynb_checkpoints
|
|
96
|
+
|
|
97
|
+
# Coverage reports
|
|
98
|
+
htmlcov/
|
|
99
|
+
.coverage
|
|
100
|
+
.coverage.*
|
|
101
|
+
coverage.xml
|
|
102
|
+
*.cover
|
|
103
|
+
.hypothesis/
|
|
104
|
+
.pytest_cache/
|
|
105
|
+
|
|
106
|
+
# mypy
|
|
107
|
+
.mypy_cache/
|
|
108
|
+
.dmypy.json
|
|
109
|
+
dmypy.json
|
|
110
|
+
|
|
111
|
+
# Environments
|
|
112
|
+
.env.local
|
|
113
|
+
.env.development.local
|
|
114
|
+
.env.test.local
|
|
115
|
+
.env.production.local
|
|
116
|
+
|
|
117
|
+
# Next.js
|
|
118
|
+
.next/
|
|
119
|
+
out/
|
|
120
|
+
|
|
121
|
+
# Production builds
|
|
122
|
+
build/
|
|
123
|
+
dist/
|
|
124
|
+
|
|
125
|
+
# demo
|
|
126
|
+
simple_demo_data/
|
|
127
|
+
code/android/app-camera/*
|
|
128
|
+
|
|
129
|
+
# private
|
|
130
|
+
accounts.md
|
everos-0.1.0/PKG-INFO
ADDED
everos-0.1.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# everos
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "everos"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = ""
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[tool.hatch.build.targets.wheel]
|
|
17
|
+
packages = ["src/everos"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0"
|