qdesc 0.0.2__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.
- {qdesc-0.0.2 → qdesc-0.0.3}/PKG-INFO +1 -1
- {qdesc-0.0.2 → qdesc-0.0.3}/qdesc.egg-info/PKG-INFO +1 -1
- {qdesc-0.0.2 → qdesc-0.0.3}/setup.py +7 -2
- {qdesc-0.0.2 → qdesc-0.0.3}/LICENCE.txt +0 -0
- {qdesc-0.0.2 → qdesc-0.0.3}/README.txt +0 -0
- {qdesc-0.0.2 → qdesc-0.0.3}/qdesc.egg-info/SOURCES.txt +0 -0
- {qdesc-0.0.2 → qdesc-0.0.3}/qdesc.egg-info/dependency_links.txt +0 -0
- {qdesc-0.0.2 → qdesc-0.0.3}/qdesc.egg-info/top_level.txt +0 -0
- {qdesc-0.0.2 → qdesc-0.0.3}/setup.cfg +0 -0
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
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()
|
|
2
7
|
|
|
3
8
|
setup(
|
|
4
9
|
name='qdesc',
|
|
5
|
-
version='0.0.
|
|
10
|
+
version='0.0.3',
|
|
6
11
|
packages=find_packages(),
|
|
7
12
|
install_requires=[
|
|
8
13
|
# List your dependencies here, e.g., pandas if your function requires it
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|