rextio 0.0.1__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.
rextio-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: rextio
3
+ Version: 0.0.1
4
+ Summary: The Rust-Extended I/O for Web. (Coming Soon)
5
+ Home-page: https://github.com/rextio/rextio
6
+ Author: Song Si-young
7
+ Author-email: chunechew@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Description-Content-Type: text/markdown
11
+ Dynamic: author
12
+ Dynamic: author-email
13
+ Dynamic: classifier
14
+ Dynamic: description
15
+ Dynamic: description-content-type
16
+ Dynamic: home-page
17
+ Dynamic: summary
18
+
19
+ # Rextio
20
+
21
+ The Rust-Extended I/O for Web.
22
+ This project is currently under active development.
23
+
24
+ Stay tuned at our [GitHub Repository](https://github.com/rextio/rextio)
rextio-0.0.1/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Rextio
2
+
3
+ The Rust-Extended I/O for Web.
4
+ This project is currently under active development.
5
+
6
+ Stay tuned at our [GitHub Repository](https://github.com/rextio/rextio)
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: rextio
3
+ Version: 0.0.1
4
+ Summary: The Rust-Extended I/O for Web. (Coming Soon)
5
+ Home-page: https://github.com/rextio/rextio
6
+ Author: Song Si-young
7
+ Author-email: chunechew@gmail.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Description-Content-Type: text/markdown
11
+ Dynamic: author
12
+ Dynamic: author-email
13
+ Dynamic: classifier
14
+ Dynamic: description
15
+ Dynamic: description-content-type
16
+ Dynamic: home-page
17
+ Dynamic: summary
18
+
19
+ # Rextio
20
+
21
+ The Rust-Extended I/O for Web.
22
+ This project is currently under active development.
23
+
24
+ Stay tuned at our [GitHub Repository](https://github.com/rextio/rextio)
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ rextio.egg-info/PKG-INFO
4
+ rextio.egg-info/SOURCES.txt
5
+ rextio.egg-info/dependency_links.txt
6
+ rextio.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
rextio-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
rextio-0.0.1/setup.py ADDED
@@ -0,0 +1,17 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="rextio",
5
+ version="0.0.1",
6
+ description="The Rust-Extended I/O for Web. (Coming Soon)",
7
+ long_description=open('README.md').read(),
8
+ long_description_content_type='text/markdown',
9
+ author="Song Si-young",
10
+ author_email="chunechew@gmail.com",
11
+ url="https://github.com/rextio/rextio",
12
+ packages=[],
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ ],
17
+ )