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.
@@ -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,9 @@
1
+ # Description
2
+ Occupy package names on PyPi:
3
+ ````bash
4
+ pypi-occupy.sh <PACKAGENAME>
5
+ ````
6
+
7
+ # Installation
8
+ 1. Provide a `.pypirc` file in '~'
9
+ 2. `./install_dependencies.sh`
@@ -0,0 +1 @@
1
+ from dummy.package import Dummy
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ class Dummy(object):
5
+ def __init__(self):
6
+ print(f"Not ready!")
@@ -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,8 @@
1
+ README.md
2
+ setup.py
3
+ dummy/__init__.py
4
+ dummy/package.py
5
+ keep_the_why_dashboard.egg-info/PKG-INFO
6
+ keep_the_why_dashboard.egg-info/SOURCES.txt
7
+ keep_the_why_dashboard.egg-info/dependency_links.txt
8
+ keep_the_why_dashboard.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )