diona 0.1.0__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.
diona-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: diona
3
+ Version: 0.1.0
4
+ Summary: A Python package named diona
5
+ Project-URL: Homepage, https://github.com/yourusername/diona
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+
12
+ # diona
13
+
14
+ A Python package named diona.
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ pip install diona
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ import diona
26
+
27
+ print(diona.__version__)
28
+ ```
29
+
30
+ ## Development
31
+
32
+ ```bash
33
+ pip install -e .
34
+ ```
diona-0.1.0/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # diona
2
+
3
+ A Python package named diona.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install diona
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ import diona
15
+
16
+ print(diona.__version__)
17
+ ```
18
+
19
+ ## Development
20
+
21
+ ```bash
22
+ pip install -e .
23
+ ```
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "diona"
7
+ version = "0.1.0"
8
+ description = "A Python package named diona"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ classifiers = [
12
+ "Programming Language :: Python :: 3",
13
+ "License :: OSI Approved :: MIT License",
14
+ "Operating System :: OS Independent",
15
+ ]
16
+
17
+ [project.urls]
18
+ Homepage = "https://github.com/yourusername/diona"
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["src/diona"]
diona-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: diona
3
+ Version: 0.1.0
4
+ Summary: A Python package named diona
5
+ Project-URL: Homepage, https://github.com/yourusername/diona
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+
12
+ # diona
13
+
14
+ A Python package named diona.
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ pip install diona
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ import diona
26
+
27
+ print(diona.__version__)
28
+ ```
29
+
30
+ ## Development
31
+
32
+ ```bash
33
+ pip install -e .
34
+ ```
@@ -0,0 +1,13 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/diona/diona.egg-info/PKG-INFO
4
+ src/diona/diona.egg-info/SOURCES.txt
5
+ src/diona/diona.egg-info/dependency_links.txt
6
+ src/diona/diona.egg-info/top_level.txt
7
+ src/diona/diona.egg-info/PKG-INFO
8
+ src/diona/diona.egg-info/SOURCES.txt
9
+ src/diona/diona.egg-info/dependency_links.txt
10
+ src/diona/diona.egg-info/top_level.txt
11
+ src/diona/firstmeet/__init__.py
12
+ src/diona/firstmeet/hello.py
13
+ test/test.py
@@ -0,0 +1 @@
1
+ firstmeet
@@ -0,0 +1,3 @@
1
+ from diona.firstmeet.hello import hello_diona
2
+
3
+ __all__ = ["hello_diona"]
@@ -0,0 +1,2 @@
1
+ def hello_diona():
2
+ print("Hello! Diona")
@@ -0,0 +1,7 @@
1
+ from diona.firstmeet.hello import hello_diona
2
+
3
+ def test_hello_diona():
4
+ hello_diona()
5
+
6
+ if __name__ == "__main__":
7
+ test_hello_diona()