julien-python-toolkit 0.1.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.
- julien_python_toolkit-0.1.0/LICENSE.txt +6 -0
- julien_python_toolkit-0.1.0/PKG-INFO +15 -0
- julien_python_toolkit-0.1.0/README.md +3 -0
- julien_python_toolkit-0.1.0/julien_python_toolkit/__init__.py +4 -0
- julien_python_toolkit-0.1.0/julien_python_toolkit.egg-info/PKG-INFO +15 -0
- julien_python_toolkit-0.1.0/julien_python_toolkit.egg-info/SOURCES.txt +8 -0
- julien_python_toolkit-0.1.0/julien_python_toolkit.egg-info/dependency_links.txt +1 -0
- julien_python_toolkit-0.1.0/julien_python_toolkit.egg-info/top_level.txt +1 -0
- julien_python_toolkit-0.1.0/setup.cfg +4 -0
- julien_python_toolkit-0.1.0/setup.py +27 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
Custom Non-Commercial License
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted to use, copy, modify, and distribute this software for personal, non-commercial purposes only.
|
|
4
|
+
Commercial use of this software is strictly prohibited without explicit permission from the author.
|
|
5
|
+
|
|
6
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: julien-python-toolkit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Important code that I reuse through multiple projects. Please see license for allowed use.
|
|
5
|
+
Home-page: https://github.com/JulienPython/JulienPythonToolkit-V001
|
|
6
|
+
Author: Julien Python
|
|
7
|
+
Author-email: python.julien@hotmail.com
|
|
8
|
+
License: Custom Non-Commercial License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE.txt
|
|
12
|
+
|
|
13
|
+
# JulienPythonToolkit-V001
|
|
14
|
+
|
|
15
|
+
Important code that I reuse through multiple projects. Please see license for allowed use.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: julien-python-toolkit
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Important code that I reuse through multiple projects. Please see license for allowed use.
|
|
5
|
+
Home-page: https://github.com/JulienPython/JulienPythonToolkit-V001
|
|
6
|
+
Author: Julien Python
|
|
7
|
+
Author-email: python.julien@hotmail.com
|
|
8
|
+
License: Custom Non-Commercial License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE.txt
|
|
12
|
+
|
|
13
|
+
# JulienPythonToolkit-V001
|
|
14
|
+
|
|
15
|
+
Important code that I reuse through multiple projects. Please see license for allowed use.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
julien_python_toolkit
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
# Read the contents of the README file for long_description
|
|
5
|
+
this_directory = Path(__file__).parent
|
|
6
|
+
long_description = (this_directory / "README.md").read_text()
|
|
7
|
+
|
|
8
|
+
# Load requirements from a file
|
|
9
|
+
with open('requirements.txt') as f:
|
|
10
|
+
required = f.read().splitlines()
|
|
11
|
+
|
|
12
|
+
setup(
|
|
13
|
+
name='julien-python-toolkit',
|
|
14
|
+
version='0.1.0',
|
|
15
|
+
packages=find_packages(),
|
|
16
|
+
license='Custom Non-Commercial License', # Reference your custom license
|
|
17
|
+
install_requires=required, # Use the list from requirements.txt
|
|
18
|
+
description='Important code that I reuse through multiple projects. Please see license for allowed use.',
|
|
19
|
+
long_description=long_description, # Include long description here
|
|
20
|
+
long_description_content_type='text/markdown', # Set to 'text/markdown' for Markdown files
|
|
21
|
+
author='Julien Python',
|
|
22
|
+
author_email='python.julien@hotmail.com',
|
|
23
|
+
url='https://github.com/JulienPython/JulienPythonToolkit-V001',
|
|
24
|
+
classifiers=[
|
|
25
|
+
'Programming Language :: Python :: 3',
|
|
26
|
+
],
|
|
27
|
+
)
|