There was an error while loading. Please reload this page.
1 parent 1c2cac8 commit 9bb7cc3Copy full SHA for 9bb7cc3
1 file changed
setup.py
@@ -29,6 +29,9 @@ def find_version(*file_paths):
29
return version_match.group(1)
30
raise RuntimeError("Unable to find version string.")
31
32
+with open("Readme.md", encoding="utf-8") as f:
33
+ readme = f.read()
34
+
35
dev_requires = [
36
"mock",
37
"pytest",
@@ -41,6 +44,8 @@ def find_version(*file_paths):
41
44
setup(name='dsspy',
42
45
version=find_version("PyDSS", "__init__.py"),
43
46
description='A high-level python interface for OpenDSS',
47
+ long_description=readme,
48
+ long_description_content_type='text/markdown',
49
author='Aadil Latif',
50
author_email='Aadil.Latif@nrel.gov',
51
url='http://www.github.com/nrel/pydss',
0 commit comments