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 +24 -0
- ubdcc-0.0.0/README.md +9 -0
- ubdcc-0.0.0/dummy/__init__.py +1 -0
- ubdcc-0.0.0/dummy/package.py +6 -0
- ubdcc-0.0.0/setup.cfg +4 -0
- ubdcc-0.0.0/setup.py +32 -0
- ubdcc-0.0.0/ubdcc.egg-info/PKG-INFO +24 -0
- ubdcc-0.0.0/ubdcc.egg-info/SOURCES.txt +8 -0
- ubdcc-0.0.0/ubdcc.egg-info/dependency_links.txt +1 -0
- ubdcc-0.0.0/ubdcc.egg-info/top_level.txt +1 -0
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 @@
|
|
|
1
|
+
from dummy.package import Dummy
|
ubdcc-0.0.0/setup.cfg
ADDED
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dummy
|