cycls 0.0.2.86__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.
@@ -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.86
3
+ Version: 0.0.2.88
4
4
  Summary: Distribute Intelligence
5
- Author: Mohammed J. AlRujayi
6
- Author-email: mj@cycls.com
7
- Requires-Python: >=3.9,<4.0
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Programming Language :: Python :: 3.9
10
- Classifier: Programming Language :: Python :: 3.10
11
- Classifier: Programming Language :: Python :: 3.11
12
- Classifier: Programming Language :: Python :: 3.12
13
- Classifier: Programming Language :: Python :: 3.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
-
@@ -165,8 +165,8 @@ class Function:
165
165
 
166
166
  def _dockerfile_local(self) -> str:
167
167
  return f"""{self._dockerfile_preamble()}
168
- COPY runner.py /app/runner.py
169
- ENTRYPOINT ["python", "/app/runner.py", "/io"]
168
+ COPY runner.py /runner.py
169
+ ENTRYPOINT ["python", "/runner.py", "/io"]
170
170
  """
171
171
 
172
172
  def _dockerfile_deploy(self, port: int) -> str: