cmux 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.
cmux-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.4
2
+ Name: cmux
3
+ Version: 0.1.0
4
+ Summary: A multiplexer tool
5
+ Home-page: https://github.com/lawrencechen/cmux
6
+ Author: Lawrence Chen
7
+ Author-email: lawrence@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+ # cmux
23
+
24
+ A multiplexer tool.
25
+
26
+ ## Installation
27
+
28
+ ```bash
29
+ npm install cmux
30
+ ```
31
+
32
+ ## Usage
33
+
34
+ ```javascript
35
+ const cmux = require('cmux');
36
+ console.log(cmux.hello());
37
+ ```
cmux-0.1.0/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # cmux
2
+
3
+ A multiplexer tool.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install cmux
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```javascript
14
+ const cmux = require('cmux');
15
+ console.log(cmux.hello());
16
+ ```
@@ -0,0 +1,4 @@
1
+ __version__ = "0.1.0"
2
+
3
+ def hello():
4
+ return "Hello from cmux!"
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.4
2
+ Name: cmux
3
+ Version: 0.1.0
4
+ Summary: A multiplexer tool
5
+ Home-page: https://github.com/lawrencechen/cmux
6
+ Author: Lawrence Chen
7
+ Author-email: lawrence@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: description
17
+ Dynamic: description-content-type
18
+ Dynamic: home-page
19
+ Dynamic: requires-python
20
+ Dynamic: summary
21
+
22
+ # cmux
23
+
24
+ A multiplexer tool.
25
+
26
+ ## Installation
27
+
28
+ ```bash
29
+ npm install cmux
30
+ ```
31
+
32
+ ## Usage
33
+
34
+ ```javascript
35
+ const cmux = require('cmux');
36
+ console.log(cmux.hello());
37
+ ```
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ cmux/__init__.py
5
+ cmux.egg-info/PKG-INFO
6
+ cmux.egg-info/SOURCES.txt
7
+ cmux.egg-info/dependency_links.txt
8
+ cmux.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ cmux
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel"]
3
+ build-backend = "setuptools.build_meta"
cmux-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
cmux-0.1.0/setup.py ADDED
@@ -0,0 +1,22 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ setup(
7
+ name="cmux",
8
+ version="0.1.0",
9
+ author="Lawrence Chen",
10
+ author_email="lawrence@example.com",
11
+ description="A multiplexer tool",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/lawrencechen/cmux",
15
+ packages=find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ],
21
+ python_requires=">=3.6",
22
+ )