-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
43 lines (39 loc) · 1.22 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
#!/usr/bin/env python
from setuptools import Extension
from setuptools import find_packages
from setuptools import setup
__version__ = '0.3.0'
pyasmjit_module = Extension(
'pyasmjit.pyasmjit',
sources = [
'pyasmjit/pyasmjit.c'
],
)
setup(
name = 'pyasmjit',
author = 'Christian Heitman',
author_email = 'barfframework@gmail.com',
description = 'JIT assemby code generation and execution',
download_url = 'https://github.com/programa-stic/pyasmjit/tarball/v0.3.0',
install_requires = [
'future',
],
license = 'BSD 2-Clause',
url = 'http://github.com/programa-stic/pyasmjit',
version = __version__,
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: C',
'Topic :: Software Development :: Assemblers',
],
ext_modules = [
pyasmjit_module,
],
packages=find_packages(exclude=['tests', 'tests.*']),
test_suite = 'tests',
)