We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c5b0ad commit 116a038Copy full SHA for 116a038
setup.py
@@ -1,11 +1,17 @@
1
import setuptools
2
3
+with open("README.md") as f:
4
+ long_description = f.read()
5
+
6
setuptools.setup(
7
name="universal_pathlib",
8
version="0.0.1",
9
author="Andrew Fulton",
10
author_email="[email protected]",
11
url="https://github.com/Quansight/universal_pathlib",
12
packages=setuptools.find_packages(),
- python_requires=">=3.7"
13
+ python_requires=">=3.7",
14
+ description="pathlib api extended to use fsspec backends",
15
+ long_description=long_description,
16
+ long_description_content_type='text/x-rst'
17
)
0 commit comments