keep-the-why-dashboard 0.0.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.
- keep_the_why_dashboard-0.0.0/PKG-INFO +19 -0
- keep_the_why_dashboard-0.0.0/README.md +9 -0
- keep_the_why_dashboard-0.0.0/dummy/__init__.py +1 -0
- keep_the_why_dashboard-0.0.0/dummy/package.py +6 -0
- keep_the_why_dashboard-0.0.0/keep_the_why_dashboard.egg-info/PKG-INFO +19 -0
- keep_the_why_dashboard-0.0.0/keep_the_why_dashboard.egg-info/SOURCES.txt +8 -0
- keep_the_why_dashboard-0.0.0/keep_the_why_dashboard.egg-info/dependency_links.txt +1 -0
- keep_the_why_dashboard-0.0.0/keep_the_why_dashboard.egg-info/top_level.txt +1 -0
- keep_the_why_dashboard-0.0.0/setup.cfg +4 -0
- keep_the_why_dashboard-0.0.0/setup.py +29 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: keep-the-why-dashboard
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Home-page: https://github.com/oliver-zehentleitner/keep-the-why-dashboard
|
|
5
|
+
Author: Oliver Zehentleitner
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Author, https://about.me/oliver-zehentleitner/
|
|
8
|
+
Project-URL: Telegram, https://t.me/unicorndevs
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Programming Language :: Python
|
|
11
|
+
Requires-Python: >=3.10.0
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description-content-type
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: license
|
|
18
|
+
Dynamic: project-url
|
|
19
|
+
Dynamic: requires-python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from dummy.package import Dummy
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: keep-the-why-dashboard
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Home-page: https://github.com/oliver-zehentleitner/keep-the-why-dashboard
|
|
5
|
+
Author: Oliver Zehentleitner
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Author, https://about.me/oliver-zehentleitner/
|
|
8
|
+
Project-URL: Telegram, https://t.me/unicorndevs
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Programming Language :: Python
|
|
11
|
+
Requires-Python: >=3.10.0
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description-content-type
|
|
16
|
+
Dynamic: home-page
|
|
17
|
+
Dynamic: license
|
|
18
|
+
Dynamic: project-url
|
|
19
|
+
Dynamic: requires-python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dummy
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
file_path = "dummy/name.txt"
|
|
4
|
+
|
|
5
|
+
with open(file_path, 'r') as file:
|
|
6
|
+
package_name = file.read().strip()
|
|
7
|
+
|
|
8
|
+
setup(
|
|
9
|
+
name=package_name,
|
|
10
|
+
version='0.0.0',
|
|
11
|
+
author="Oliver Zehentleitner",
|
|
12
|
+
url=f"https://github.com/oliver-zehentleitner/{package_name}",
|
|
13
|
+
description="",
|
|
14
|
+
long_description="",
|
|
15
|
+
long_description_content_type="text/markdown",
|
|
16
|
+
license='MIT',
|
|
17
|
+
install_requires=[],
|
|
18
|
+
keywords='',
|
|
19
|
+
project_urls={
|
|
20
|
+
'Author': 'https://about.me/oliver-zehentleitner/',
|
|
21
|
+
'Telegram': 'https://t.me/unicorndevs',
|
|
22
|
+
},
|
|
23
|
+
python_requires='>=3.10.0',
|
|
24
|
+
packages=find_packages(exclude=["tools", "images", "dev", "docs", ".github"]),
|
|
25
|
+
classifiers=[
|
|
26
|
+
"Development Status :: 1 - Planning",
|
|
27
|
+
"Programming Language :: Python",
|
|
28
|
+
],
|
|
29
|
+
)
|