vos-data-utils 0.0.1__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 vos-data-utils might be problematic. Click here for more details.

@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: vos-data-utils
3
+ Version: 0.0.1
4
+ Summary: description
5
+ Home-page: https://github.com/vos-team/vos-data-utils
6
+ Author: vos
7
+ Author-email: dev@valueofspace.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.7
12
+ Description-Content-Type: text/markdown
13
+
14
+ # vos-data-utils
@@ -0,0 +1 @@
1
+ # vos-data-utils
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,36 @@
1
+ import setuptools
2
+ from vdu import (
3
+ author,
4
+ version,
5
+ description
6
+ )
7
+
8
+
9
+ with open("README.md", "r") as fh:
10
+ long_description = fh.read()
11
+
12
+ setuptools.setup(
13
+ name="vos-data-utils",
14
+ version=version,
15
+ author=author,
16
+ author_email="dev@valueofspace.com",
17
+ description=description,
18
+ long_description=long_description,
19
+ long_description_content_type="text/markdown",
20
+ url="https://github.com/vos-team/vos-data-utils",
21
+ packages=setuptools.find_packages(),
22
+ classifiers=[
23
+ "Programming Language :: Python :: 3",
24
+ "License :: OSI Approved :: MIT License",
25
+ "Operating System :: OS Independent",
26
+ ],
27
+ python_requires='>=3.7',
28
+ entry_points={
29
+ 'console_scripts': [
30
+ 'shortcut1 = package.module:func',
31
+ ],
32
+ 'gui_scripts': [
33
+ 'shortcut2 = package.module:func',
34
+ ]
35
+ }
36
+ )
@@ -0,0 +1,16 @@
1
+ version = '0.0.1'
2
+ author = 'vos'
3
+ description = 'description'
4
+ license = 'MIT'
5
+
6
+ def __version__():
7
+ return version
8
+
9
+ def __author__():
10
+ return author
11
+
12
+ def __description__():
13
+ return description
14
+
15
+ def __license__():
16
+ return license
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: vos-data-utils
3
+ Version: 0.0.1
4
+ Summary: description
5
+ Home-page: https://github.com/vos-team/vos-data-utils
6
+ Author: vos
7
+ Author-email: dev@valueofspace.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.7
12
+ Description-Content-Type: text/markdown
13
+
14
+ # vos-data-utils
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ vdu/__init__.py
4
+ vos_data_utils.egg-info/PKG-INFO
5
+ vos_data_utils.egg-info/SOURCES.txt
6
+ vos_data_utils.egg-info/dependency_links.txt
7
+ vos_data_utils.egg-info/entry_points.txt
8
+ vos_data_utils.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ shortcut1 = package.module:func
3
+
4
+ [gui_scripts]
5
+ shortcut2 = package.module:func