pyreto 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.
pyreto-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyreto
3
+ Version: 0.0.0
4
+ Summary: This name has been reserved using Reserver
5
+ Home-page: https://url.com
6
+ Download-URL: https://download_url.com
7
+ Author: Development Team
8
+ Author-email: test@test.com
9
+ License: MIT
10
+ Project-URL: Source, https://github.com/source
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
+ Requires-Python: >=3.6
21
+ Description-Content-Type: text/markdown
22
+ Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
27
+ Dynamic: download-url
28
+ Dynamic: home-page
29
+ Dynamic: keywords
30
+ Dynamic: license
31
+ Dynamic: project-url
32
+ Dynamic: requires-python
33
+ Dynamic: summary
34
+
35
+
36
+ ## Overview
37
+ pyreto is a Python library for doing awesome things.
38
+ This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
pyreto-0.0.0/README.md ADDED
@@ -0,0 +1,4 @@
1
+
2
+ ## Overview
3
+ pyreto 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
+ """pyreto modules."""
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyreto
3
+ Version: 0.0.0
4
+ Summary: This name has been reserved using Reserver
5
+ Home-page: https://url.com
6
+ Download-URL: https://download_url.com
7
+ Author: Development Team
8
+ Author-email: test@test.com
9
+ License: MIT
10
+ Project-URL: Source, https://github.com/source
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
+ Requires-Python: >=3.6
21
+ Description-Content-Type: text/markdown
22
+ Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
27
+ Dynamic: download-url
28
+ Dynamic: home-page
29
+ Dynamic: keywords
30
+ Dynamic: license
31
+ Dynamic: project-url
32
+ Dynamic: requires-python
33
+ Dynamic: summary
34
+
35
+
36
+ ## Overview
37
+ pyreto is a Python library for doing awesome things.
38
+ 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
+ pyreto.egg-info/PKG-INFO
5
+ pyreto.egg-info/SOURCES.txt
6
+ pyreto.egg-info/dependency_links.txt
7
+ pyreto.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
pyreto-0.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
pyreto-0.0.0/setup.py ADDED
@@ -0,0 +1,47 @@
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 ="pyreto",
16
+ packages=[".",],
17
+ version='0.0.0',
18
+ description="This name has been reserved using Reserver",
19
+ long_description="""
20
+ ## Overview
21
+ pyreto 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="test@test.com",
27
+ url="https://url.com",
28
+ download_url="https://download_url.com",
29
+ keywords="python3 python reserve reserver reserved",
30
+ project_urls={
31
+ 'Source':"https://github.com/source",
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
+ ],
45
+ license="MIT",
46
+ )
47
+