wexample-filestate-python 0.0.2__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.
- wexample-filestate-python-0.0.2/PKG-INFO +12 -0
- wexample-filestate-python-0.0.2/README.md +0 -0
- wexample-filestate-python-0.0.2/setup.cfg +4 -0
- wexample-filestate-python-0.0.2/setup.py +24 -0
- wexample-filestate-python-0.0.2/wexample_filestate_python/__init__.py +0 -0
- wexample-filestate-python-0.0.2/wexample_filestate_python.egg-info/PKG-INFO +12 -0
- wexample-filestate-python-0.0.2/wexample_filestate_python.egg-info/SOURCES.txt +8 -0
- wexample-filestate-python-0.0.2/wexample_filestate_python.egg-info/dependency_links.txt +1 -0
- wexample-filestate-python-0.0.2/wexample_filestate_python.egg-info/requires.txt +3 -0
- wexample-filestate-python-0.0.2/wexample_filestate_python.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wexample-filestate-python
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Helpers for Python.
|
|
5
|
+
Home-page: https://github.com/wexample/python-filestate-python
|
|
6
|
+
Author: weeger
|
|
7
|
+
Author-email: contact@wexample.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
File without changes
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='wexample-filestate-python',
|
|
5
|
+
version=open('version.txt').read(),
|
|
6
|
+
author='weeger',
|
|
7
|
+
author_email='contact@wexample.com',
|
|
8
|
+
description='Helpers for Python.',
|
|
9
|
+
long_description=open('README.md').read(),
|
|
10
|
+
long_description_content_type='text/markdown',
|
|
11
|
+
url='https://github.com/wexample/python-filestate-python',
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
classifiers=[
|
|
14
|
+
'Programming Language :: Python :: 3',
|
|
15
|
+
'License :: OSI Approved :: MIT License',
|
|
16
|
+
'Operating System :: OS Independent',
|
|
17
|
+
],
|
|
18
|
+
install_requires=[
|
|
19
|
+
'python-dotenv',
|
|
20
|
+
'pydantic',
|
|
21
|
+
'wexample-filestate',
|
|
22
|
+
],
|
|
23
|
+
python_requires='>=3.6',
|
|
24
|
+
)
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wexample-filestate-python
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Helpers for Python.
|
|
5
|
+
Home-page: https://github.com/wexample/python-filestate-python
|
|
6
|
+
Author: weeger
|
|
7
|
+
Author-email: contact@wexample.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
setup.py
|
|
3
|
+
wexample_filestate_python/__init__.py
|
|
4
|
+
wexample_filestate_python.egg-info/PKG-INFO
|
|
5
|
+
wexample_filestate_python.egg-info/SOURCES.txt
|
|
6
|
+
wexample_filestate_python.egg-info/dependency_links.txt
|
|
7
|
+
wexample_filestate_python.egg-info/requires.txt
|
|
8
|
+
wexample_filestate_python.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wexample_filestate_python
|