cycls 0.0.2.87__tar.gz → 0.0.2.88__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.
- cycls-0.0.2.88/.gitignore +27 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/PKG-INFO +10 -17
- cycls-0.0.2.88/pyproject.toml +35 -0
- cycls-0.0.2.87/pyproject.toml +0 -28
- {cycls-0.0.2.87 → cycls-0.0.2.88}/README.md +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/__init__.py +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/app.py +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/auth.py +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/cli.py +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/function.py +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/themes/default/assets/index-DOmNqb-2.js +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/themes/default/assets/index-oGkkm3Z8.css +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/themes/default/index.html +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/themes/dev/index.html +0 -0
- {cycls-0.0.2.87 → cycls-0.0.2.88}/cycls/web.py +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
### AL ###
|
|
2
|
+
#Template for AL projects for Dynamics 365 Business Central
|
|
3
|
+
#launch.json folder
|
|
4
|
+
.vscode/
|
|
5
|
+
#Cache folder
|
|
6
|
+
.alcache/
|
|
7
|
+
#Symbols folder
|
|
8
|
+
.alpackages/
|
|
9
|
+
#Snapshots folder
|
|
10
|
+
.snapshots/
|
|
11
|
+
#Testing Output folder
|
|
12
|
+
.output/
|
|
13
|
+
#Extension App-file
|
|
14
|
+
*.app
|
|
15
|
+
#Rapid Application Development File
|
|
16
|
+
rad.json
|
|
17
|
+
#Translation Base-file
|
|
18
|
+
*.g.xlf
|
|
19
|
+
#License-file
|
|
20
|
+
*.flf
|
|
21
|
+
#Test results file
|
|
22
|
+
TestResults.xml
|
|
23
|
+
dist/
|
|
24
|
+
**/__pycache__/
|
|
25
|
+
.*
|
|
26
|
+
!.github
|
|
27
|
+
mj/
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cycls
|
|
3
|
-
Version: 0.0.2.
|
|
3
|
+
Version: 0.0.2.88
|
|
4
4
|
Summary: Distribute Intelligence
|
|
5
|
-
Author: Mohammed J. AlRujayi
|
|
6
|
-
|
|
7
|
-
Requires-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.14
|
|
15
|
-
Requires-Dist: cloudpickle (>=3.1.1,<4.0.0)
|
|
16
|
-
Requires-Dist: docker (>=7.1.0,<8.0.0)
|
|
17
|
-
Requires-Dist: fastapi (>=0.111.0,<0.112.0)
|
|
18
|
-
Requires-Dist: httpx (>=0.27.0,<0.28.0)
|
|
19
|
-
Requires-Dist: pyjwt (>=2.8.0,<3.0.0)
|
|
5
|
+
Author-email: "Mohammed J. AlRujayi" <mj@cycls.com>
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Requires-Dist: cloudpickle>=3.1.1
|
|
8
|
+
Requires-Dist: docker>=7.1.0
|
|
9
|
+
Requires-Dist: email-validator>=2.0.0
|
|
10
|
+
Requires-Dist: fastapi>=0.111.0
|
|
11
|
+
Requires-Dist: httpx>=0.27.0
|
|
12
|
+
Requires-Dist: pyjwt>=2.8.0
|
|
13
|
+
Requires-Dist: uvicorn>=0.30.0
|
|
20
14
|
Description-Content-Type: text/markdown
|
|
21
15
|
|
|
22
16
|
<h3 align="center">
|
|
@@ -273,4 +267,3 @@ No YAML. No Dockerfiles. No infrastructure repo. The code is the deployment.
|
|
|
273
267
|
## License
|
|
274
268
|
|
|
275
269
|
MIT
|
|
276
|
-
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "cycls"
|
|
3
|
+
version = "0.0.2.88"
|
|
4
|
+
description = "Distribute Intelligence"
|
|
5
|
+
authors = [{ name = "Mohammed J. AlRujayi", email = "mj@cycls.com" }]
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
requires-python = ">=3.9"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"fastapi>=0.111.0",
|
|
10
|
+
"httpx>=0.27.0",
|
|
11
|
+
"pyjwt>=2.8.0",
|
|
12
|
+
"docker>=7.1.0",
|
|
13
|
+
"cloudpickle>=3.1.1",
|
|
14
|
+
"uvicorn>=0.30.0",
|
|
15
|
+
"email-validator>=2.0.0",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.scripts]
|
|
19
|
+
cycls = "cycls.cli:main"
|
|
20
|
+
|
|
21
|
+
[dependency-groups]
|
|
22
|
+
test = [
|
|
23
|
+
"pytest>=8.0.0",
|
|
24
|
+
"requests>=2.31.0",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[build-system]
|
|
28
|
+
requires = ["hatchling"]
|
|
29
|
+
build-backend = "hatchling.build"
|
|
30
|
+
|
|
31
|
+
[tool.hatch.build.targets.wheel]
|
|
32
|
+
packages = ["cycls"]
|
|
33
|
+
|
|
34
|
+
[tool.hatch.build.targets.sdist]
|
|
35
|
+
include = ["cycls/**/*"]
|
cycls-0.0.2.87/pyproject.toml
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "cycls"
|
|
3
|
-
version = "0.0.2.87"
|
|
4
|
-
|
|
5
|
-
packages = [{ include = "cycls" }]
|
|
6
|
-
include = ["cycls/themes/**/*"]
|
|
7
|
-
description = "Distribute Intelligence"
|
|
8
|
-
authors = ["Mohammed J. AlRujayi <mj@cycls.com>"]
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
|
|
11
|
-
[tool.poetry.dependencies]
|
|
12
|
-
python = "^3.9"
|
|
13
|
-
fastapi = "^0.111.0"
|
|
14
|
-
httpx = "^0.27.0"
|
|
15
|
-
pyjwt = "^2.8.0"
|
|
16
|
-
docker = "^7.1.0"
|
|
17
|
-
cloudpickle = "^3.1.1"
|
|
18
|
-
|
|
19
|
-
[tool.poetry.scripts]
|
|
20
|
-
cycls = "cycls.cli:main"
|
|
21
|
-
|
|
22
|
-
[tool.poetry.group.test.dependencies]
|
|
23
|
-
pytest = "^8.0.0"
|
|
24
|
-
requests = "^2.31.0"
|
|
25
|
-
|
|
26
|
-
[build-system]
|
|
27
|
-
requires = ["poetry-core"]
|
|
28
|
-
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|