luxury-bot 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.
- luxury_bot-0.0.1/PKG-INFO +21 -0
- luxury_bot-0.0.1/README.md +10 -0
- luxury_bot-0.0.1/pyproject.toml +21 -0
- luxury_bot-0.0.1/setup.cfg +4 -0
- luxury_bot-0.0.1/src/luxury/__init__.py +5 -0
- luxury_bot-0.0.1/src/luxury_bot.egg-info/PKG-INFO +21 -0
- luxury_bot-0.0.1/src/luxury_bot.egg-info/SOURCES.txt +7 -0
- luxury_bot-0.0.1/src/luxury_bot.egg-info/dependency_links.txt +1 -0
- luxury_bot-0.0.1/src/luxury_bot.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: luxury-bot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A luxury package registered for demonstration and reservation.
|
|
5
|
+
Author-email: Luxury User <user@example.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Luxury Package
|
|
13
|
+
|
|
14
|
+
This package was registered to reserve the name 'luxury' on PyPI.
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
```python
|
|
19
|
+
import luxury
|
|
20
|
+
luxury.info()
|
|
21
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "luxury-bot"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Luxury User", email="user@example.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "A luxury package registered for demonstration and reservation."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.7"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[tool.setuptools.packages.find]
|
|
21
|
+
where = ["src"]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: luxury-bot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A luxury package registered for demonstration and reservation.
|
|
5
|
+
Author-email: Luxury User <user@example.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Luxury Package
|
|
13
|
+
|
|
14
|
+
This package was registered to reserve the name 'luxury' on PyPI.
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
```python
|
|
19
|
+
import luxury
|
|
20
|
+
luxury.info()
|
|
21
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
luxury
|