-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
47 lines (41 loc) · 1.17 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Installation of the tritondse module."""
import sys
from setuptools import setup, find_packages
with open("README.md") as f:
README = f.read()
setup(
name="tritondse",
version="0.1.12",
description="A library of Dynamic Symbolic Exploration based the Triton library",
packages=find_packages(),
long_description=README,
long_description_content_type='text/markdown',
url="https://github.com/quarkslab/tritondse",
project_urls={
"Documentation": "https://quarkslab.github.io/tritondse/",
"Bug Tracker": "https://github.com/quarkslab/tritondse/issues",
"Source": "https://github.com/quarkslab/tritondse"
},
setup_requires=[],
install_requires=[
"cle",
"enum_tools",
"lief>=v0.15.0",
"networkx",
"pyQBDI",
"quokka-project",
"triton-library>=1.0.0rc4",
],
tests_require=[],
license="Apache License Version 2.0",
author="Quarkslab",
classifiers=[
'Topic :: Security',
'Environment :: Console',
'Operating System :: OS Independent',
],
test_suite="",
scripts=[]
)