diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c3b9800 --- /dev/null +++ b/setup.py @@ -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' + ] + } +)