jvkit 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.
jvkit-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: jvkit
3
+ Version: 0.0.1
4
+ Summary: JV Kit - A versatile developer toolkit
5
+ Home-page: https://github.com/jvkit/jvkit
6
+ Author: jv
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/plain
13
+
14
+ A Python toolkit for developers. Coming soon.
@@ -0,0 +1,6 @@
1
+ """JV Kit - A versatile developer toolkit."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+ def hello():
6
+ print("jvkit - coming soon")
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: jvkit
3
+ Version: 0.0.1
4
+ Summary: JV Kit - A versatile developer toolkit
5
+ Home-page: https://github.com/jvkit/jvkit
6
+ Author: jv
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/plain
13
+
14
+ A Python toolkit for developers. Coming soon.
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ jvkit/__init__.py
3
+ jvkit.egg-info/PKG-INFO
4
+ jvkit.egg-info/SOURCES.txt
5
+ jvkit.egg-info/dependency_links.txt
6
+ jvkit.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ jvkit
jvkit-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
jvkit-0.0.1/setup.py ADDED
@@ -0,0 +1,19 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="jvkit",
5
+ version="0.0.1",
6
+ description="JV Kit - A versatile developer toolkit",
7
+ long_description="A Python toolkit for developers. Coming soon.",
8
+ long_description_content_type="text/plain",
9
+ author="jv",
10
+ url="https://github.com/jvkit/jvkit",
11
+ packages=find_packages(),
12
+ classifiers=[
13
+ "Development Status :: 1 - Planning",
14
+ "Intended Audience :: Developers",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Programming Language :: Python :: 3",
17
+ ],
18
+ python_requires=">=3.8",
19
+ )