clox 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.
Potentially problematic release.
This version of clox might be problematic. Click here for more details.
- clox-0.0.0/PKG-INFO +25 -0
- clox-0.0.0/clox/__init__.py +2 -0
- clox-0.0.0/clox.egg-info/PKG-INFO +25 -0
- clox-0.0.0/clox.egg-info/SOURCES.txt +6 -0
- clox-0.0.0/clox.egg-info/dependency_links.txt +1 -0
- clox-0.0.0/clox.egg-info/top_level.txt +1 -0
- clox-0.0.0/clox_setup.py +45 -0
- clox-0.0.0/setup.cfg +4 -0
clox-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: clox
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: This name has been reserved using Reserver
|
|
5
|
+
Home-page: https://url.com
|
|
6
|
+
Download-URL: https://download_url.com
|
|
7
|
+
Author: Development Team
|
|
8
|
+
Author-email: test@test.com
|
|
9
|
+
License: MIT
|
|
10
|
+
Project-URL: Source, https://github.com/source
|
|
11
|
+
Keywords: python3 python reserve reserver reserved
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Requires-Python: >=3.6
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
|
|
25
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: clox
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: This name has been reserved using Reserver
|
|
5
|
+
Home-page: https://url.com
|
|
6
|
+
Download-URL: https://download_url.com
|
|
7
|
+
Author: Development Team
|
|
8
|
+
Author-email: test@test.com
|
|
9
|
+
License: MIT
|
|
10
|
+
Project-URL: Source, https://github.com/source
|
|
11
|
+
Keywords: python3 python reserve reserver reserved
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Requires-Python: >=3.6
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
|
|
25
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
clox
|
clox-0.0.0/clox_setup.py
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
import sys
|
|
3
|
+
|
|
4
|
+
try:
|
|
5
|
+
from setuptools import setup
|
|
6
|
+
except ImportError:
|
|
7
|
+
from distutils.core import setup
|
|
8
|
+
|
|
9
|
+
# invalid email
|
|
10
|
+
# download url
|
|
11
|
+
# url
|
|
12
|
+
# project urls
|
|
13
|
+
|
|
14
|
+
setup(
|
|
15
|
+
name ="clox",
|
|
16
|
+
packages=["clox",],
|
|
17
|
+
version='0.0.0',
|
|
18
|
+
description="This name has been reserved using Reserver",
|
|
19
|
+
long_description="""
|
|
20
|
+
This name has been reserved using [Reserver](https://github.com/openscilab/reserver).
|
|
21
|
+
""",
|
|
22
|
+
long_description_content_type='text/markdown',
|
|
23
|
+
author="Development Team",
|
|
24
|
+
author_email="test@test.com",
|
|
25
|
+
url="https://url.com",
|
|
26
|
+
download_url="https://download_url.com",
|
|
27
|
+
keywords="python3 python reserve reserver reserved",
|
|
28
|
+
project_urls={
|
|
29
|
+
'Source':"https://github.com/source",
|
|
30
|
+
},
|
|
31
|
+
install_requires="",
|
|
32
|
+
python_requires='>=3.6',
|
|
33
|
+
classifiers=[
|
|
34
|
+
'Development Status :: 1 - Planning',
|
|
35
|
+
'Programming Language :: Python :: 3.6',
|
|
36
|
+
'Programming Language :: Python :: 3.7',
|
|
37
|
+
'Programming Language :: Python :: 3.8',
|
|
38
|
+
'Programming Language :: Python :: 3.9',
|
|
39
|
+
'Programming Language :: Python :: 3.10',
|
|
40
|
+
'Programming Language :: Python :: 3.11',
|
|
41
|
+
'Programming Language :: Python :: 3.12',
|
|
42
|
+
],
|
|
43
|
+
license="MIT",
|
|
44
|
+
)
|
|
45
|
+
|
clox-0.0.0/setup.cfg
ADDED