copyable 0.0.0.dev0__tar.gz → 0.0.0.dev1__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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: copyable
3
- Version: 0.0.0.dev0
4
- Summary: copyable
3
+ Version: 0.0.0.dev1
4
+ Summary: This project provides a copyable ABC.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
7
7
 
@@ -27,6 +27,7 @@ License: The MIT License (MIT)
27
27
  Project-URL: Download, https://pypi.org/project/copyable/#files
28
28
  Project-URL: Index, https://pypi.org/project/copyable/
29
29
  Project-URL: Source, https://github.com/johannes-programming/copyable/
30
+ Project-URL: Website, https://copyable.johannes-programming.online/
30
31
  Classifier: Development Status :: 2 - Pre-Alpha
31
32
  Classifier: License :: OSI Approved :: MIT License
32
33
  Classifier: Natural Language :: English
@@ -38,6 +39,7 @@ Classifier: Typing :: Typed
38
39
  Requires-Python: >=3.11
39
40
  Description-Content-Type: text/x-rst
40
41
  License-File: LICENSE.txt
42
+ Requires-Dist: setdoc<2,>=1.2.7
41
43
  Dynamic: license-file
42
44
 
43
45
  ========
@@ -18,13 +18,15 @@ classifiers = [
18
18
  "Programming Language :: Python :: 3 :: Only",
19
19
  "Typing :: Typed",
20
20
  ]
21
- dependencies = []
22
- description = "copyable"
21
+ dependencies = [
22
+ "setdoc>=1.2.7,<2",
23
+ ]
24
+ description = "This project provides a copyable ABC."
23
25
  keywords = []
24
26
  name = "copyable"
25
27
  readme = "README.rst"
26
28
  requires-python = ">=3.11"
27
- version = "0.0.0.dev0"
29
+ version = "0.0.0.dev1"
28
30
 
29
31
  [project.license]
30
32
  file = "LICENSE.txt"
@@ -33,3 +35,4 @@ file = "LICENSE.txt"
33
35
  Download = "https://pypi.org/project/copyable/#files"
34
36
  Index = "https://pypi.org/project/copyable/"
35
37
  Source = "https://github.com/johannes-programming/copyable/"
38
+ Website = "https://copyable.johannes-programming.online/"
@@ -0,0 +1,14 @@
1
+ from abc import ABC, abstractmethod
2
+ from typing import *
3
+
4
+ import setdoc
5
+
6
+ __all__ = ["Copyable"]
7
+
8
+
9
+ class Copyable(ABC):
10
+ __slots__ = ()
11
+
12
+ @abstractmethod
13
+ @setdoc.basic
14
+ def copy(self: Self) -> Self: ...
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: copyable
3
- Version: 0.0.0.dev0
4
- Summary: copyable
3
+ Version: 0.0.0.dev1
4
+ Summary: This project provides a copyable ABC.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
7
7
 
@@ -27,6 +27,7 @@ License: The MIT License (MIT)
27
27
  Project-URL: Download, https://pypi.org/project/copyable/#files
28
28
  Project-URL: Index, https://pypi.org/project/copyable/
29
29
  Project-URL: Source, https://github.com/johannes-programming/copyable/
30
+ Project-URL: Website, https://copyable.johannes-programming.online/
30
31
  Classifier: Development Status :: 2 - Pre-Alpha
31
32
  Classifier: License :: OSI Approved :: MIT License
32
33
  Classifier: Natural Language :: English
@@ -38,6 +39,7 @@ Classifier: Typing :: Typed
38
39
  Requires-Python: >=3.11
39
40
  Description-Content-Type: text/x-rst
40
41
  License-File: LICENSE.txt
42
+ Requires-Dist: setdoc<2,>=1.2.7
41
43
  Dynamic: license-file
42
44
 
43
45
  ========
@@ -4,10 +4,10 @@ README.rst
4
4
  pyproject.toml
5
5
  setup.cfg
6
6
  src/copyable/__init__.py
7
- src/copyable/__main__.py
8
7
  src/copyable.egg-info/PKG-INFO
9
8
  src/copyable.egg-info/SOURCES.txt
10
9
  src/copyable.egg-info/dependency_links.txt
10
+ src/copyable.egg-info/requires.txt
11
11
  src/copyable.egg-info/top_level.txt
12
12
  src/copyable/core/__init__.py
13
13
  src/copyable/tests/__init__.py
@@ -0,0 +1 @@
1
+ setdoc<2,>=1.2.7
@@ -1,4 +0,0 @@
1
- from copyable import main
2
-
3
- if __name__ == "__main__":
4
- main()
@@ -1,8 +0,0 @@
1
- from typing import *
2
-
3
- __all__ = ["main"]
4
-
5
-
6
- def main(args: Optional[Iterable] = None) -> None:
7
- "This function prints 'Hello World!'."
8
- print("Hello World!")
File without changes
File without changes
File without changes
File without changes