mirror of
https://github.com/LIV2/amitools.git
synced 2025-12-06 06:32:47 +00:00
added missing files to sdist via MANIFEST.in
This commit is contained in:
parent
e7905be720
commit
f3ffba4b25
6
MANIFEST.in
Normal file
6
MANIFEST.in
Normal file
@ -0,0 +1,6 @@
|
||||
include MANIFEST.in
|
||||
include README.md
|
||||
include Makefile
|
||||
recursive-include amitools/data *
|
||||
recursive-include musashi *.pyx *.c *.h readme.txt history.txt
|
||||
|
||||
@ -1,19 +0,0 @@
|
||||
from distutils.core import setup
|
||||
from Cython.Build import cythonize
|
||||
from distutils.extension import Extension
|
||||
|
||||
sourcefiles = [
|
||||
'emu.pyx',
|
||||
'traps.c', 'mem.c',
|
||||
'm68kcpu.c', 'm68kdasm.c',
|
||||
'm68kopac.c', 'm68kopdm.c', 'm68kopnz.c', 'm68kops.c' # gen src
|
||||
]
|
||||
depends = [
|
||||
'pycpu.pyx', 'pymem.pyx', 'pytraps.pyx'
|
||||
]
|
||||
|
||||
extensions = [Extension("emu", sourcefiles, depends=depends)]
|
||||
|
||||
setup(
|
||||
ext_modules = cythonize(extensions) #, output_dir=".", gdb_debug=True)
|
||||
)
|
||||
Loading…
x
Reference in New Issue
Block a user