qdesc 0.0.1__tar.gz → 0.0.3__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.

@@ -1,7 +1,9 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qdesc
3
- Version: 0.0.1
4
- Summary: A brief description of your package
3
+ Version: 0.0.3
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.1
4
- Summary: A brief description of your package
3
+ Version: 0.0.3
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
qdesc-0.0.3/setup.py ADDED
@@ -0,0 +1,19 @@
1
+ from setuptools import setup, find_packages
2
+ from pathlib import Path
3
+
4
+ # Read the contents of the README file
5
+ this_directory = Path(__file__).parent
6
+ long_description = (this_directory / "README.txt").read_text()
7
+
8
+ setup(
9
+ name='qdesc',
10
+ version='0.0.3',
11
+ packages=find_packages(),
12
+ install_requires=[
13
+ # List your dependencies here, e.g., pandas if your function requires it
14
+ ],
15
+ author='Paolo Hilado',
16
+ author_email='datasciencepgh@proton.me',
17
+ long_description='README.txt',
18
+ long_description_content_type='text/markdown', # or 'text/x-rst' for reStructuredText # other metadata fields... )
19
+ )
qdesc-0.0.1/setup.py DELETED
@@ -1,13 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- setup(
4
- name='qdesc',
5
- version='0.0.1',
6
- packages=find_packages(),
7
- install_requires=[
8
- # List your dependencies here, e.g., pandas if your function requires it
9
- ],
10
- author='Paolo Hilado',
11
- author_email='datasciencepgh@proton.me',
12
- description='A brief description of your package'
13
- )
File without changes
File without changes
File without changes
File without changes