nest-simulator 0.0.1.dev0__py3-none-any.whl

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,12 @@
1
+ """nest-simulator - A minimal test package."""
2
+
3
+ __version__ = "0.1.0.dev0"
4
+
5
+
6
+ def hello_world() -> str:
7
+ """Return a greeting message.
8
+
9
+ Returns:
10
+ str: The greeting message "Hello World".
11
+ """
12
+ return "Hello World"
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: nest-simulator
3
+ Version: 0.0.1.dev0
4
+ Summary: A minimal test package
5
+ Author-email: Your Name <you@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourusername/nest-simulator
8
+ Project-URL: Repository, https://github.com/yourusername/nest-simulator
9
+ Classifier: Development Status :: 2 - Pre-Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
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
+ Requires-Python: >=3.9
18
+ Description-Content-Type: text/markdown
19
+
20
+ # nest-simulator
21
+
22
+ A minimal test package.
23
+
24
+ ## Installation
25
+
26
+ ```bash
27
+ pip install nest-simulator
28
+ ```
29
+
30
+ ## Usage
31
+
32
+ ```python
33
+ from nest_simulator import hello_world
34
+
35
+ print(hello_world()) # Output: Hello World
36
+ ```
@@ -0,0 +1,5 @@
1
+ nest_simulator/__init__.py,sha256=lpgHF0DOD2HgFap-bzCYx4DqmhbggBc0XkHVwsjcTbw,237
2
+ nest_simulator-0.0.1.dev0.dist-info/METADATA,sha256=m-5lH1-a0HqjumopwoXxInuY5yL_IkLAO_CEiFTUvIE,958
3
+ nest_simulator-0.0.1.dev0.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
4
+ nest_simulator-0.0.1.dev0.dist-info/top_level.txt,sha256=bMXsESLqiOhUTprymDG_IeO6lzG_V1-Rx9Ez8id4qZA,15
5
+ nest_simulator-0.0.1.dev0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ nest_simulator