ct-aa-ds 0.0.1__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,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.10
@@ -0,0 +1,10 @@
1
+ Metadata-Version: 2.4
2
+ Name: ct-aa-ds
3
+ Version: 0.0.1
4
+ Summary: Internal company placeholder to prevent dependency confusion.
5
+ Author: Applied Analytics Team
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+
9
+ # ct-aa-ds
10
+ This is an internal package placeholder to prevent dependency confusion. It contains no functional code.
@@ -0,0 +1,2 @@
1
+ # ct-aa-ds
2
+ This is an internal package placeholder to prevent dependency confusion. It contains no functional code.
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "ct-aa-ds"
3
+ version = "0.0.1"
4
+ authors = [
5
+ {name = "Applied Analytics Team"}
6
+ ]
7
+ description = "Internal company placeholder to prevent dependency confusion."
8
+ readme = "README.md"
9
+ requires-python = ">=3.10"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ ct-aa-ds = "ct_aa_ds:main"
14
+
15
+ [build-system]
16
+ requires = ["hatchling"]
17
+ build-backend = "hatchling.build"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from ct-aa-ds!")