We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6262bd9 commit a9da626Copy full SHA for a9da626
setup.py
@@ -1,10 +1,11 @@
1
import os
2
from setuptools import setup, find_packages
3
4
-__version__ = "0.1.0"
+__version__ = "0.2.0"
5
6
7
requirements_filepath = os.path.join(os.path.dirname(__name__), "requirements.txt")
8
+readme_filepath = os.path.join(os.path.dirname(__name__), "README.md")
9
with open(requirements_filepath) as fp:
10
install_requires = fp.read()
11
@@ -47,4 +48,6 @@
47
48
install_requires=install_requires,
49
extras_require=EXTRAS_REQUIRE,
50
tests_require=["pytest"],
51
+ long_description=readme_filepath,
52
+ long_description_content_type='text/markdown',
53
)
0 commit comments