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 ADDED
@@ -0,0 +1,3 @@
1
+ MIT License
2
+ Copyright (c) 2025 Aayush Singh
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy...
@@ -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,14 @@
1
+ # expreess
2
+
3
+ A simple Python package that greets the user.
4
+
5
+ ## Installation
6
+ ```bash
7
+ pip install expreess
8
+ ```
9
+
10
+ ## Usage
11
+ ```python
12
+ from expreess import greet
13
+ print(greet("Aayush"))
14
+ ```
@@ -0,0 +1 @@
1
+ from .main import greet
@@ -0,0 +1,2 @@
1
+ def greet(name):
2
+ return f"Welcome, {name}! This module is called expreess."
@@ -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,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.py
5
+ expreess/__init__.py
6
+ expreess/main.py
7
+ expreess.egg-info/PKG-INFO
8
+ expreess.egg-info/SOURCES.txt
9
+ expreess.egg-info/dependency_links.txt
10
+ expreess.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ expreess
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )