Skip to content

Commit 116a038

Browse files
committed
adds description and long description
1 parent 7c5b0ad commit 116a038

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
import setuptools
22

3+
with open("README.md") as f:
4+
long_description = f.read()
5+
36
setuptools.setup(
47
name="universal_pathlib",
58
version="0.0.1",
69
author="Andrew Fulton",
710
author_email="[email protected]",
811
url="https://github.com/Quansight/universal_pathlib",
912
packages=setuptools.find_packages(),
10-
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'
1117
)

0 commit comments

Comments
 (0)