Skip to content

Commit a9da626

Browse files
committed
Update version 0.1.0->0.2.0
1 parent 6262bd9 commit a9da626

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import os
22
from setuptools import setup, find_packages
33

4-
__version__ = "0.1.0"
4+
__version__ = "0.2.0"
55

66

77
requirements_filepath = os.path.join(os.path.dirname(__name__), "requirements.txt")
8+
readme_filepath = os.path.join(os.path.dirname(__name__), "README.md")
89
with open(requirements_filepath) as fp:
910
install_requires = fp.read()
1011

@@ -47,4 +48,6 @@
4748
install_requires=install_requires,
4849
extras_require=EXTRAS_REQUIRE,
4950
tests_require=["pytest"],
51+
long_description=readme_filepath,
52+
long_description_content_type='text/markdown',
5053
)

0 commit comments

Comments
 (0)