wexample-prompt 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.
- wexample-prompt-0.0.1/PKG-INFO +19 -0
- wexample-prompt-0.0.1/README.md +3 -0
- wexample-prompt-0.0.1/setup.cfg +4 -0
- wexample-prompt-0.0.1/setup.py +22 -0
- wexample-prompt-0.0.1/wexample_prompt.egg-info/PKG-INFO +19 -0
- wexample-prompt-0.0.1/wexample_prompt.egg-info/SOURCES.txt +7 -0
- wexample-prompt-0.0.1/wexample_prompt.egg-info/dependency_links.txt +1 -0
- wexample-prompt-0.0.1/wexample_prompt.egg-info/requires.txt +1 -0
- wexample-prompt-0.0.1/wexample_prompt.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wexample-prompt
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Helper for your tty interactions
|
|
5
|
+
Home-page: https://github.com/wexample/python-prompt
|
|
6
|
+
Author: weeger
|
|
7
|
+
Author-email: contact@wexample.com
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.6
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Prompt
|
|
17
|
+
|
|
18
|
+
Some tools to display TTY prompts
|
|
19
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='wexample-prompt',
|
|
5
|
+
version=open('version.txt').read(),
|
|
6
|
+
author='weeger',
|
|
7
|
+
author_email='contact@wexample.com',
|
|
8
|
+
description='Helper for your tty interactions',
|
|
9
|
+
long_description=open('README.md').read(),
|
|
10
|
+
long_description_content_type='text/markdown',
|
|
11
|
+
url='https://github.com/wexample/python-prompt',
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
classifiers=[
|
|
14
|
+
'Programming Language :: Python :: 3',
|
|
15
|
+
'License :: OSI Approved :: MIT License',
|
|
16
|
+
'Operating System :: OS Independent',
|
|
17
|
+
],
|
|
18
|
+
install_requires=[
|
|
19
|
+
'pydantic'
|
|
20
|
+
],
|
|
21
|
+
python_requires='>=3.6',
|
|
22
|
+
)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wexample-prompt
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Helper for your tty interactions
|
|
5
|
+
Home-page: https://github.com/wexample/python-prompt
|
|
6
|
+
Author: weeger
|
|
7
|
+
Author-email: contact@wexample.com
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.6
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Prompt
|
|
17
|
+
|
|
18
|
+
Some tools to display TTY prompts
|
|
19
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pydantic
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|