trakka 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 @@
1
+ .cfg
trakka-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: trakka
3
+ Version: 0.0.1
4
+ Summary: Trakka CLI
5
+ Project-URL: Homepage, https://github.com/austrakka/austrakka2-cli
6
+ Project-URL: Issues, https://github.com/austrakka/austrakka2-cli/issues
7
+ Author-email: Samuel Carswell <s.carswell@unimelb.edu.au>
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Trakka
15
+
16
+ Will soon be home of the [AusTrakka CLI](https://github.com/austrakka/austrakka2-cli).
trakka-0.0.1/Pipfile ADDED
@@ -0,0 +1,12 @@
1
+ [[source]]
2
+ url = "https://pypi.org/simple"
3
+ verify_ssl = true
4
+ name = "pypi"
5
+
6
+ [packages]
7
+
8
+ [dev-packages]
9
+ hatchling = "*"
10
+
11
+ [requires]
12
+ python_version = "3.11"
@@ -0,0 +1,61 @@
1
+ {
2
+ "_meta": {
3
+ "hash": {
4
+ "sha256": "de9c51ac83b3ab18313862bd4cc64304067be9497e57a7bdefe6bd9fca10b403"
5
+ },
6
+ "pipfile-spec": 6,
7
+ "requires": {
8
+ "python_version": "3.11"
9
+ },
10
+ "sources": [
11
+ {
12
+ "name": "pypi",
13
+ "url": "https://pypi.org/simple",
14
+ "verify_ssl": true
15
+ }
16
+ ]
17
+ },
18
+ "default": {},
19
+ "develop": {
20
+ "hatchling": {
21
+ "hashes": [
22
+ "sha256:971c296d9819abb3811112fc52c7a9751c8d381898f36533bb16f9791e941fd6",
23
+ "sha256:d3a2f3567c4f926ea39849cdf924c7e99e6686c9c8e288ae1037c8fa2a5d937b"
24
+ ],
25
+ "index": "pypi",
26
+ "markers": "python_version >= '3.8'",
27
+ "version": "==1.27.0"
28
+ },
29
+ "packaging": {
30
+ "hashes": [
31
+ "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759",
32
+ "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"
33
+ ],
34
+ "markers": "python_version >= '3.8'",
35
+ "version": "==24.2"
36
+ },
37
+ "pathspec": {
38
+ "hashes": [
39
+ "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08",
40
+ "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"
41
+ ],
42
+ "markers": "python_version >= '3.8'",
43
+ "version": "==0.12.1"
44
+ },
45
+ "pluggy": {
46
+ "hashes": [
47
+ "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1",
48
+ "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"
49
+ ],
50
+ "markers": "python_version >= '3.8'",
51
+ "version": "==1.5.0"
52
+ },
53
+ "trove-classifiers": {
54
+ "hashes": [
55
+ "sha256:0fb11f1e995a757807a8ef1c03829fbd4998d817319abcef1f33165750f103be",
56
+ "sha256:17cbd055d67d5e9d9de63293a8732943fabc21574e4c7b74edf112b4928cf5f3"
57
+ ],
58
+ "version": "==2024.10.21.16"
59
+ }
60
+ }
61
+ }
trakka-0.0.1/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Trakka
2
+
3
+ Will soon be home of the [AusTrakka CLI](https://github.com/austrakka/austrakka2-cli).
@@ -0,0 +1,22 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "trakka"
7
+ version = "0.0.1"
8
+ authors = [
9
+ { name="Samuel Carswell", email="s.carswell@unimelb.edu.au" },
10
+ ]
11
+ description = "Trakka CLI"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/austrakka/austrakka2-cli"
22
+ Issues = "https://github.com/austrakka/austrakka2-cli/issues"
@@ -0,0 +1,2 @@
1
+ if __name__ == '__main__':
2
+ print("Trakka")