diff --git a/setup.py b/setup.py index 771e6d3..bf35f81 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,13 @@ from setuptools import setup +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() setup( name='aiodiskdb', - version='0.1', + version='0.2', + long_description=long_description, + long_description_content_type="text/markdown", url='https://github.com/mempoolco/aiodiskdb/', license='MIT', author='Guido Dassori', @@ -16,5 +20,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', ], - include_package_data=True + include_package_data=True, + packages=['aiodiskdb'], + package_dir={'aiodiskdb': 'aiodiskdb'}, )