-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 860 Bytes
/
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
import sys
from setuptools import setup, Extension
if sys.version_info < (3,):
module = Extension('pystack', sources=['pystack/pystack2.cpp'])
else:
module = Extension('pystack', sources=['pystack/pystack3.cpp'])
with open("README.md", "r") as f:
readme = f.read()
setup(
name='opdb',
version='0.1.1',
description='opcode level python debugger',
long_description=readme,
long_description_content_type="text/markdown",
packages=['opdb', 'opdb.lib'],
ext_modules=[module],
include_package_data=True,
author='ssst0n3',
author_email='[email protected]',
url='https://github.com/ssst0n3/opdb',
download_url='https://github.com/ssst0n3/opdb/releases/download/v0.1/opdb-0.1.tar.gz',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)