diff --git a/qsynthesis/__init__.py b/qsynthesis/__init__.py index bb3ff9a..c5c36a0 100644 --- a/qsynthesis/__init__.py +++ b/qsynthesis/__init__.py @@ -6,7 +6,7 @@ import logging -__version__ = "0.1.1" +__version__ = "0.1.2" # Simple object used to retrieve the plugin in IDA qsynthesis_plugin = None diff --git a/setup.py b/setup.py index 8b30d49..243bc84 100644 --- a/setup.py +++ b/setup.py @@ -8,12 +8,15 @@ server_deps = ['fastapi', 'uvicorn'] assembly_deps = ["arybo", "llvmlite"] +with open("README.md") as f: + README = f.read() + setup( name="qsynthesis", - version="0.1.1", + version="0.1.2", description="Python API to synthesize Triton AST's", long_description_content_type='text/markdown', - long_description="file: README.md", + long_description=README, packages=find_packages(), url="https://github.com/quarkslab/qsynthesis", project_urls={