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 +34 -0
- diona-0.1.0/README.md +23 -0
- diona-0.1.0/pyproject.toml +21 -0
- diona-0.1.0/setup.cfg +4 -0
- diona-0.1.0/src/diona/diona.egg-info/PKG-INFO +34 -0
- diona-0.1.0/src/diona/diona.egg-info/SOURCES.txt +13 -0
- diona-0.1.0/src/diona/diona.egg-info/dependency_links.txt +1 -0
- diona-0.1.0/src/diona/diona.egg-info/top_level.txt +1 -0
- diona-0.1.0/src/diona/firstmeet/__init__.py +3 -0
- diona-0.1.0/src/diona/firstmeet/hello.py +2 -0
- diona-0.1.0/test/test.py +7 -0
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,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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
firstmeet
|