ubdcc 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.
ubdcc-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: ubdcc
3
+ Version: 0.0.0
4
+ Home-page: https://github.com/LUCIT-Systems-and-Development/ubdcc
5
+ Author: LUCIT Systems and Development
6
+ Author-email: info@lucit.tech
7
+ License: LSOSL - LUCIT Synergetic Open Source License
8
+ Project-URL: Author, https://www.lucit.tech
9
+ Project-URL: Telegram, https://t.me/unicorndevs
10
+ Project-URL: Get Support, https://www.lucit.tech/get-support.html
11
+ Project-URL: LUCIT Online Shop, https://shop.lucit.services/software
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Programming Language :: Python
14
+ Requires-Python: >=3.7.0
15
+ Description-Content-Type: text/markdown
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: classifier
19
+ Dynamic: description-content-type
20
+ Dynamic: home-page
21
+ Dynamic: keywords
22
+ Dynamic: license
23
+ Dynamic: project-url
24
+ Dynamic: requires-python
ubdcc-0.0.0/README.md ADDED
@@ -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!")
ubdcc-0.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
ubdcc-0.0.0/setup.py ADDED
@@ -0,0 +1,32 @@
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="LUCIT Systems and Development",
12
+ author_email='info@lucit.tech',
13
+ url=f"https://github.com/LUCIT-Systems-and-Development/{package_name}",
14
+ description="",
15
+ long_description="",
16
+ long_description_content_type="text/markdown",
17
+ license='LSOSL - LUCIT Synergetic Open Source License',
18
+ install_requires=[],
19
+ keywords='',
20
+ project_urls={
21
+ 'Author': 'https://www.lucit.tech',
22
+ 'Telegram': 'https://t.me/unicorndevs',
23
+ 'Get Support': 'https://www.lucit.tech/get-support.html',
24
+ 'LUCIT Online Shop': 'https://shop.lucit.services/software',
25
+ },
26
+ python_requires='>=3.7.0',
27
+ packages=find_packages(exclude=["tools", "images", "dev", "docs", ".github"]),
28
+ classifiers=[
29
+ "Development Status :: 1 - Planning",
30
+ "Programming Language :: Python",
31
+ ],
32
+ )
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: ubdcc
3
+ Version: 0.0.0
4
+ Home-page: https://github.com/LUCIT-Systems-and-Development/ubdcc
5
+ Author: LUCIT Systems and Development
6
+ Author-email: info@lucit.tech
7
+ License: LSOSL - LUCIT Synergetic Open Source License
8
+ Project-URL: Author, https://www.lucit.tech
9
+ Project-URL: Telegram, https://t.me/unicorndevs
10
+ Project-URL: Get Support, https://www.lucit.tech/get-support.html
11
+ Project-URL: LUCIT Online Shop, https://shop.lucit.services/software
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Programming Language :: Python
14
+ Requires-Python: >=3.7.0
15
+ Description-Content-Type: text/markdown
16
+ Dynamic: author
17
+ Dynamic: author-email
18
+ Dynamic: classifier
19
+ Dynamic: description-content-type
20
+ Dynamic: home-page
21
+ Dynamic: keywords
22
+ Dynamic: license
23
+ Dynamic: project-url
24
+ Dynamic: requires-python
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ dummy/__init__.py
4
+ dummy/package.py
5
+ ubdcc.egg-info/PKG-INFO
6
+ ubdcc.egg-info/SOURCES.txt
7
+ ubdcc.egg-info/dependency_links.txt
8
+ ubdcc.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ dummy