Add WIP setup.py file.
This commit is contained in:
parent
2834576683
commit
fed8e65afc
49
setup.py
Normal file
49
setup.py
Normal file
|
@ -0,0 +1,49 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
Setup configuration for llvm--emulator.
|
||||
|
||||
This file is incomplete
|
||||
|
||||
"""
|
||||
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
packages = ['llvm_emulator']
|
||||
|
||||
setup(
|
||||
name='llvm--emulator',
|
||||
version='1.0.0',
|
||||
description='A simple hacky emulator/debugger for LLVM--',
|
||||
long_description='TODO',
|
||||
url='https://gitlab.com/cfreksen/llvm--emulator',
|
||||
author='Casper Freksen',
|
||||
author_email='cfreksen@cs.au.dk',
|
||||
license='GPLv3+',
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Topic :: System :: Emulators',
|
||||
'Topic :: Software Development :: Debuggers',
|
||||
'Intended Audience :: Education',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
||||
'Natural Language :: English',
|
||||
'Programming Language :: Python :: 3 :: Only',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Environment :: Console'
|
||||
],
|
||||
keywords='llvm debugger',
|
||||
packages=packages,
|
||||
install_requires=[
|
||||
'ply >= 3'
|
||||
],
|
||||
python_requires='~=3.5',
|
||||
package_data={},
|
||||
data_files=[],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'llvm--emulator=llvm_emulator.emulator:main'
|
||||
]
|
||||
}
|
||||
)
|
Loading…
Reference in New Issue
Block a user