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 5c76229 commit 4a9c4fcCopy full SHA for 4a9c4fc
setup.py
@@ -1,4 +1,8 @@
1
from setuptools import find_packages, setup
2
+from pathlib import Path
3
+
4
+this_directory = Path(__file__).parent
5
+long_description = (this_directory / "README.md").read_text()
6
7
keywords=[
8
"spatial-machine-learning",
@@ -27,7 +31,7 @@
27
31
packages=find_packages(),
28
32
version='0.1.0',
29
33
description='GeoTorchAI, formarly GeoTorch, A Spatiotemporal Deep Learning Framework',
30
- long_description = "file: README.md",
34
+ long_description = long_description,
35
long_description_content_type = "text/markdown",
36
author='Kanchan Chowdhury',
37
author_email='kchowdh1@asu.edu',
0 commit comments