Update setup files.

This commit is contained in:
cfreksen 2017-11-09 15:36:28 +01:00
parent cea1cece13
commit 3ddab21f72
No known key found for this signature in database
GPG Key ID: EAC13EE101008978
3 changed files with 7 additions and 2 deletions

2
MANIFEST.in Normal file
View File

@ -0,0 +1,2 @@
include llvm_emulator/parser.out
include README.org

View File

@ -1,2 +1,3 @@
ply >= 3.10
setuptools >= 36
twine >= 1.9

View File

@ -2,7 +2,8 @@
"""
Setup configuration for llvm--emulator.
This file is incomplete
Note that due to naming issues with egg/pypi, the program is known as
'llvm-minusminus-emulator' (without the 'quotes').
"""
@ -23,8 +24,8 @@ except:
pass
setup(
name='llvm--emulator',
version='1.0.0',
name='llvm-minusminus-emulator',
description='A simple hacky emulator/debugger for LLVM--',
long_description=long_description,
url='https://gitlab.com/cfreksen/llvm--emulator',
@ -46,6 +47,7 @@ setup(
],
keywords='llvm debugger',
packages=packages,
include_package_data=True,
install_requires=[
'ply >= 3'
],