expreess 0.1.0__py3-none-any.whl
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.
expreess/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .main import greet
|
expreess/main.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: expreess
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A simple greeting module called expreess
|
|
5
|
+
Home-page: https://github.com/yourusername/expreess
|
|
6
|
+
Author: Aayush Singh
|
|
7
|
+
Author-email: youremail@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.7
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
License-File: LICENSE
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: classifier
|
|
17
|
+
Dynamic: description
|
|
18
|
+
Dynamic: description-content-type
|
|
19
|
+
Dynamic: home-page
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
Dynamic: requires-python
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
# expreess
|
|
25
|
+
|
|
26
|
+
A simple Python package that greets the user.
|
|
27
|
+
|
|
28
|
+
## Installation
|
|
29
|
+
```bash
|
|
30
|
+
pip install expreess
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Usage
|
|
34
|
+
```python
|
|
35
|
+
from expreess import greet
|
|
36
|
+
print(greet("Aayush"))
|
|
37
|
+
```
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
expreess/__init__.py,sha256=L1JE6Fa7upINC4q9KBqHyLqGgLNDuIDe36PEBaw6FK0,24
|
|
2
|
+
expreess/main.py,sha256=XuElKVPeUFKj1Y4sGTG5dCAPMg7GL91utRHRzTuC50s,80
|
|
3
|
+
expreess-0.1.0.dist-info/licenses/LICENSE,sha256=KPkhdzDctu5kZMQbYY-NPRnHUAhYxOHdTJ5PIGch9SI,124
|
|
4
|
+
expreess-0.1.0.dist-info/METADATA,sha256=R2_ya9Ynvhiplx2qv-Jb-c6NAWdM8zmxh_cSwD7HReg,858
|
|
5
|
+
expreess-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
6
|
+
expreess-0.1.0.dist-info/top_level.txt,sha256=5a4GyQ0YLS-3nJqcbe9ZBghAqnoxQkNk4Rp-RRo2xbk,9
|
|
7
|
+
expreess-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
expreess
|