Skip to content

Commit

Permalink
FIX QiraDB warnings add url and disc to package, move qiradb version …
Browse files Browse the repository at this point in the history
…to a new file and allow setup.py --version, force pip package to latest version
  • Loading branch information
Maroc-OS committed Feb 6, 2016
1 parent 9ac8f02 commit e055baa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions qiradb/setup.py
@@ -1,13 +1,13 @@
#!/usr/bin/env python2.7
from setuptools import setup, Extension

# should be a symlink to the root
# could also add the git rev to this?
version=open('VERSION').read().strip()
from version import __version__
from setuptools import setup, Extension, Command

# the c++ extension module
extension_mod = Extension("qiradb._qiradb", ["qiradb/Trace.cpp", "qiradb/_qiradb.cpp"])
extension_mod = Extension("qiradb._qiradb", sources=["qiradb/Trace.cpp", "qiradb/_qiradb.cpp"], language="c++")

url="https://github.com/BinaryAnalysisPlatform"
description="QEMU Interactive Runtime Analyser, QIRADB Tracer package."

# specify the package
setup(name='qiradb', version=version, ext_modules=[extension_mod], packages=['qiradb'])
setup(name='qiradb', version=__version__, url=url, description=description, ext_modules=[extension_mod], packages=['qiradb'])

1 change: 1 addition & 0 deletions requirements.txt
@@ -1,3 +1,4 @@
pip
six
html
flask-socketio
Expand Down

0 comments on commit e055baa

Please sign in to comment.