qdesc 0.0.1__tar.gz → 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.
Potentially problematic release.
This version of qdesc might be problematic. Click here for more details.
- {qdesc-0.0.1 → qdesc-0.0.2}/PKG-INFO +4 -2
- {qdesc-0.0.1 → qdesc-0.0.2}/qdesc.egg-info/PKG-INFO +4 -2
- {qdesc-0.0.1 → qdesc-0.0.2}/setup.py +3 -2
- {qdesc-0.0.1 → qdesc-0.0.2}/LICENCE.txt +0 -0
- {qdesc-0.0.1 → qdesc-0.0.2}/README.txt +0 -0
- {qdesc-0.0.1 → qdesc-0.0.2}/qdesc.egg-info/SOURCES.txt +0 -0
- {qdesc-0.0.1 → qdesc-0.0.2}/qdesc.egg-info/dependency_links.txt +0 -0
- {qdesc-0.0.1 → qdesc-0.0.2}/qdesc.egg-info/top_level.txt +0 -0
- {qdesc-0.0.1 → qdesc-0.0.2}/setup.cfg +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qdesc
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: A brief description of your package
|
|
3
|
+
Version: 0.0.2
|
|
5
4
|
Author: Paolo Hilado
|
|
6
5
|
Author-email: datasciencepgh@proton.me
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
7
|
License-File: LICENCE.txt
|
|
8
|
+
|
|
9
|
+
README.txt
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qdesc
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: A brief description of your package
|
|
3
|
+
Version: 0.0.2
|
|
5
4
|
Author: Paolo Hilado
|
|
6
5
|
Author-email: datasciencepgh@proton.me
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
7
|
License-File: LICENCE.txt
|
|
8
|
+
|
|
9
|
+
README.txt
|
|
@@ -2,12 +2,13 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='qdesc',
|
|
5
|
-
version='0.0.
|
|
5
|
+
version='0.0.2',
|
|
6
6
|
packages=find_packages(),
|
|
7
7
|
install_requires=[
|
|
8
8
|
# List your dependencies here, e.g., pandas if your function requires it
|
|
9
9
|
],
|
|
10
10
|
author='Paolo Hilado',
|
|
11
11
|
author_email='datasciencepgh@proton.me',
|
|
12
|
-
|
|
12
|
+
long_description='README.txt',
|
|
13
|
+
long_description_content_type='text/markdown', # or 'text/x-rst' for reStructuredText # other metadata fields... )
|
|
13
14
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|