From 4a9c4fcf15367e781124db282d07835b73f69a41 Mon Sep 17 00:00:00 2001 From: kanchanchy Date: Sat, 7 Jan 2023 18:32:54 -0700 Subject: [PATCH] setup file updated for pypi release --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5c7f769..d853890 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,8 @@ from setuptools import find_packages, setup +from pathlib import Path + +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() keywords=[ "spatial-machine-learning", @@ -27,7 +31,7 @@ packages=find_packages(), version='0.1.0', description='GeoTorchAI, formarly GeoTorch, A Spatiotemporal Deep Learning Framework', - long_description = "file: README.md", + long_description = long_description, long_description_content_type = "text/markdown", author='Kanchan Chowdhury', author_email='kchowdh1@asu.edu',