evernight 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.
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: evernight
3
+ Version: 0.1.0
4
+ Summary: A Python package named evernight
5
+ Project-URL: Homepage, https://github.com/yourusername/evernight
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
+ # march7
13
+
14
+ A Python package named evernight.
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ pip install evernight
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ import evernight
26
+
27
+ print(evernight.__version__)
28
+ ```
29
+
30
+ ## Development
31
+
32
+ ```bash
33
+ pip install -e .
34
+ ```
@@ -0,0 +1,23 @@
1
+ # march7
2
+
3
+ A Python package named evernight.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install evernight
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ import evernight
15
+
16
+ print(evernight.__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 = "evernight"
7
+ version = "0.1.0"
8
+ description = "A Python package named evernight"
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/evernight"
19
+
20
+ [tool.setuptools.packages.find]
21
+ where = ["src/evernight"]
@@ -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: evernight
3
+ Version: 0.1.0
4
+ Summary: A Python package named evernight
5
+ Project-URL: Homepage, https://github.com/yourusername/evernight
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
+ # march7
13
+
14
+ A Python package named evernight.
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ pip install evernight
20
+ ```
21
+
22
+ ## Usage
23
+
24
+ ```python
25
+ import evernight
26
+
27
+ print(evernight.__version__)
28
+ ```
29
+
30
+ ## Development
31
+
32
+ ```bash
33
+ pip install -e .
34
+ ```
@@ -0,0 +1,12 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/evernight/evernight.egg-info/PKG-INFO
4
+ src/evernight/evernight.egg-info/SOURCES.txt
5
+ src/evernight/evernight.egg-info/dependency_links.txt
6
+ src/evernight/evernight.egg-info/top_level.txt
7
+ src/evernight/evernight.egg-info/PKG-INFO
8
+ src/evernight/evernight.egg-info/SOURCES.txt
9
+ src/evernight/evernight.egg-info/dependency_links.txt
10
+ src/evernight/evernight.egg-info/top_level.txt
11
+ src/evernight/firstmeet/__init__.py
12
+ src/evernight/firstmeet/hello.py
@@ -0,0 +1,3 @@
1
+ from evernight.firstmeet.hello import hello_evernight
2
+
3
+ __all__ = ["hello_evernight"]
@@ -0,0 +1,2 @@
1
+ def hello_evernight():
2
+ print("Hello! Evernight")