openswmm-gpu-omp 0.0.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,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: openswmm-gpu-omp
3
+ Version: 0.0.0
4
+ Summary: This name has been reserved using Reserver
5
+ Home-page: https://github.com/openscilab/reserver
6
+ Download-URL: https://github.com/openscilab/reserver
7
+ Author: Development Team
8
+ Author-email: reserver@openscilab.com
9
+ License: MIT
10
+ Project-URL: Source, https://github.com/openscilab/reserver
11
+ Keywords: python3 python reserve reserver reserved
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Programming Language :: Python :: 3.6
14
+ Classifier: Programming Language :: Python :: 3.7
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
+ Requires-Python: >=3.6
23
+ Description-Content-Type: text/markdown
24
+ Dynamic: author
25
+ Dynamic: author-email
26
+ Dynamic: classifier
27
+ Dynamic: description
28
+ Dynamic: description-content-type
29
+ Dynamic: download-url
30
+ Dynamic: home-page
31
+ Dynamic: keywords
32
+ Dynamic: license
33
+ Dynamic: project-url
34
+ Dynamic: requires-python
35
+ Dynamic: summary
36
+
37
+
38
+ ## Overview
39
+ openswmm-gpu-omp is a Python library for doing awesome things.
40
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
@@ -0,0 +1,4 @@
1
+
2
+ ## Overview
3
+ openswmm-gpu-omp is a Python library for doing awesome things.
4
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
@@ -0,0 +1,2 @@
1
+ # -*- coding: utf-8 -*-
2
+ """openswmm-gpu-omp modules."""
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: openswmm-gpu-omp
3
+ Version: 0.0.0
4
+ Summary: This name has been reserved using Reserver
5
+ Home-page: https://github.com/openscilab/reserver
6
+ Download-URL: https://github.com/openscilab/reserver
7
+ Author: Development Team
8
+ Author-email: reserver@openscilab.com
9
+ License: MIT
10
+ Project-URL: Source, https://github.com/openscilab/reserver
11
+ Keywords: python3 python reserve reserver reserved
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Programming Language :: Python :: 3.6
14
+ Classifier: Programming Language :: Python :: 3.7
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
+ Requires-Python: >=3.6
23
+ Description-Content-Type: text/markdown
24
+ Dynamic: author
25
+ Dynamic: author-email
26
+ Dynamic: classifier
27
+ Dynamic: description
28
+ Dynamic: description-content-type
29
+ Dynamic: download-url
30
+ Dynamic: home-page
31
+ Dynamic: keywords
32
+ Dynamic: license
33
+ Dynamic: project-url
34
+ Dynamic: requires-python
35
+ Dynamic: summary
36
+
37
+
38
+ ## Overview
39
+ openswmm-gpu-omp is a Python library for doing awesome things.
40
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
@@ -0,0 +1,7 @@
1
+ README.md
2
+ __init__.py
3
+ setup.py
4
+ openswmm_gpu_omp.egg-info/PKG-INFO
5
+ openswmm_gpu_omp.egg-info/SOURCES.txt
6
+ openswmm_gpu_omp.egg-info/dependency_links.txt
7
+ openswmm_gpu_omp.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,49 @@
1
+
2
+ import sys
3
+
4
+ try:
5
+ from setuptools import setup
6
+ except ImportError:
7
+ from distutils.core import setup
8
+
9
+ # invalid email
10
+ # download url
11
+ # url
12
+ # project urls
13
+
14
+ setup(
15
+ name ="openswmm-gpu-omp",
16
+ packages=[".",],
17
+ version='0.0.0',
18
+ description="This name has been reserved using Reserver",
19
+ long_description="""
20
+ ## Overview
21
+ openswmm-gpu-omp is a Python library for doing awesome things.
22
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
23
+ """,
24
+ long_description_content_type='text/markdown',
25
+ author="Development Team",
26
+ author_email="reserver@openscilab.com",
27
+ url="https://github.com/openscilab/reserver",
28
+ download_url="https://github.com/openscilab/reserver",
29
+ keywords="python3 python reserve reserver reserved",
30
+ project_urls={
31
+ 'Source':"https://github.com/openscilab/reserver",
32
+ },
33
+ install_requires="",
34
+ python_requires='>=3.6',
35
+ classifiers=[
36
+ 'Development Status :: 1 - Planning',
37
+ 'Programming Language :: Python :: 3.6',
38
+ 'Programming Language :: Python :: 3.7',
39
+ 'Programming Language :: Python :: 3.8',
40
+ 'Programming Language :: Python :: 3.9',
41
+ 'Programming Language :: Python :: 3.10',
42
+ 'Programming Language :: Python :: 3.11',
43
+ 'Programming Language :: Python :: 3.12',
44
+ 'Programming Language :: Python :: 3.13',
45
+ 'Programming Language :: Python :: 3.14',
46
+ ],
47
+ license="MIT",
48
+ )
49
+