pyteet 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,18 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026-present Nathan Winther <nathanwinther@fastmail.fm>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6
+ associated documentation files (the "Software"), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
9
+ following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial
12
+ portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
15
+ LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16
+ EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
pyteet-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyteet
3
+ Version: 0.0.1
4
+ Project-URL: Documentation, https://github.com/nathanwinther/pyteet#readme
5
+ Project-URL: Issues, https://github.com/nathanwinther/pyteet/issues
6
+ Project-URL: Source, https://github.com/nathanwinther/pyteet
7
+ Author-email: Nathan Winther <nathanwinther@fastmail.fm>
8
+ License-Expression: MIT
9
+ License-File: LICENSE.txt
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: Implementation :: CPython
18
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+
22
+ # pyteet
23
+
24
+ [![PyPI - Version](https://img.shields.io/pypi/v/pyteet.svg)](https://pypi.org/project/pyteet)
25
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyteet.svg)](https://pypi.org/project/pyteet)
26
+
27
+ -----
28
+
29
+ ## Table of Contents
30
+
31
+ - [Installation](#installation)
32
+ - [License](#license)
33
+
34
+ ## Installation
35
+
36
+ ```console
37
+ pip install pyteet
38
+ ```
39
+
40
+ ## License
41
+
42
+ `pyteet` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
pyteet-0.0.1/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # pyteet
2
+
3
+ [![PyPI - Version](https://img.shields.io/pypi/v/pyteet.svg)](https://pypi.org/project/pyteet)
4
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyteet.svg)](https://pypi.org/project/pyteet)
5
+
6
+ -----
7
+
8
+ ## Table of Contents
9
+
10
+ - [Installation](#installation)
11
+ - [License](#license)
12
+
13
+ ## Installation
14
+
15
+ ```console
16
+ pip install pyteet
17
+ ```
18
+
19
+ ## License
20
+
21
+ `pyteet` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,61 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "pyteet"
7
+ dynamic = ["version"]
8
+ description = ''
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ keywords = []
13
+ authors = [
14
+ { name = "Nathan Winther", email = "nathanwinther@fastmail.fm" },
15
+ ]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Programming Language :: Python",
19
+ "Programming Language :: Python :: 3.8",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: Implementation :: CPython",
25
+ "Programming Language :: Python :: Implementation :: PyPy",
26
+ ]
27
+ dependencies = []
28
+
29
+ [project.urls]
30
+ Documentation = "https://github.com/nathanwinther/pyteet#readme"
31
+ Issues = "https://github.com/nathanwinther/pyteet/issues"
32
+ Source = "https://github.com/nathanwinther/pyteet"
33
+
34
+ [tool.hatch.version]
35
+ path = "src/pyteet/__about__.py"
36
+
37
+ [tool.hatch.envs.types]
38
+ extra-dependencies = [
39
+ "mypy>=1.0.0",
40
+ ]
41
+ [tool.hatch.envs.types.scripts]
42
+ check = "mypy --install-types --non-interactive {args:src/pyteet tests}"
43
+
44
+ [tool.coverage.run]
45
+ source_pkgs = ["pyteet", "tests"]
46
+ branch = true
47
+ parallel = true
48
+ omit = [
49
+ "src/pyteet/__about__.py",
50
+ ]
51
+
52
+ [tool.coverage.paths]
53
+ pyteet = ["src/pyteet", "*/pyteet/src/pyteet"]
54
+ tests = ["tests", "*/pyteet/tests"]
55
+
56
+ [tool.coverage.report]
57
+ exclude_lines = [
58
+ "no cov",
59
+ "if __name__ == .__main__.:",
60
+ "if TYPE_CHECKING:",
61
+ ]
@@ -0,0 +1,4 @@
1
+ # SPDX-FileCopyrightText: 2026-present Nathan Winther <nathanwinther@fastmail.fm>
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+ __version__ = "0.0.1"
@@ -0,0 +1,6 @@
1
+ # SPDX-FileCopyrightText: 2026-present Nathan Winther <nathanwinther@fastmail.fm>
2
+ #
3
+ # SPDX-License-Identifier: MIT
4
+
5
+ def success():
6
+ return True
@@ -0,0 +1,5 @@
1
+ from pyteet import success
2
+
3
+ if __name__ == '__main__':
4
+ print(success())
5
+
@@ -0,0 +1,3 @@
1
+ # SPDX-FileCopyrightText: 2026-present Nathan Winther <nathanwinther@fastmail.fm>
2
+ #
3
+ # SPDX-License-Identifier: MIT