expreess 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.
- expreess-0.1.0/LICENSE +3 -0
- expreess-0.1.0/PKG-INFO +37 -0
- expreess-0.1.0/README.md +14 -0
- expreess-0.1.0/expreess/__init__.py +1 -0
- expreess-0.1.0/expreess/main.py +2 -0
- expreess-0.1.0/expreess.egg-info/PKG-INFO +37 -0
- expreess-0.1.0/expreess.egg-info/SOURCES.txt +10 -0
- expreess-0.1.0/expreess.egg-info/dependency_links.txt +1 -0
- expreess-0.1.0/expreess.egg-info/top_level.txt +1 -0
- expreess-0.1.0/pyproject.toml +3 -0
- expreess-0.1.0/setup.cfg +4 -0
- expreess-0.1.0/setup.py +20 -0
expreess-0.1.0/LICENSE
ADDED
expreess-0.1.0/PKG-INFO
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
|
+
```
|
expreess-0.1.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .main import greet
|
|
@@ -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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
expreess
|
expreess-0.1.0/setup.cfg
ADDED
expreess-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="expreess",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
install_requires=[],
|
|
8
|
+
author="Aayush Singh",
|
|
9
|
+
author_email="youremail@example.com",
|
|
10
|
+
description="A simple greeting module called expreess",
|
|
11
|
+
long_description=open("README.md").read(),
|
|
12
|
+
long_description_content_type="text/markdown",
|
|
13
|
+
url="https://github.com/yourusername/expreess",
|
|
14
|
+
classifiers=[
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
],
|
|
19
|
+
python_requires=">=3.7",
|
|
20
|
+
)
|