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.
long_description
1 parent e4371ce commit 901f8dfCopy full SHA for 901f8df
1 file changed
setup.py
@@ -1,5 +1,9 @@
1
from setuptools import setup, find_packages
2
3
+# read the contents of your README file
4
+from pathlib import Path
5
+this_directory = Path(__file__).parent
6
+long_description = (this_directory / "README.md").read_text()
7
8
setup(
9
name="openpaygo",
@@ -8,7 +12,9 @@
12
license='MIT',
13
author="Solaris Offgrid",
10
14
url='https://github.com/EnAccess/OpenPAYGO-python/',
15
+ long_description=long_description,
16
+ long_description_content_type='text/markdown',
11
17
install_requires=[
18
'siphash',
19
],
-)
20
+)
0 commit comments