Skip to content

Commit

Permalink
proper packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
gdassori committed Jun 12, 2021
1 parent 96757c9 commit b3e706b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand All @@ -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'},
)

0 comments on commit b3e706b

Please sign in to comment.