Files
asmbench/setup.py
2018-08-02 10:49:49 +02:00

24 lines
659 B
Python

from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='asmjit',
version='0.1.2',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
url='',
license='AGPLv3',
author='Julian Hammer',
author_email='julian.hammer@u-sys.org',
description='A Benchmark Toolkit for Assembly Instructions Using the LLVM JIT',
long_description_content_type='text/markdown',
long_description=long_description,
install_requires=['llvmlite>=0.23.2', 'psutil'],
extras_require={
'sc18src': ['numpy', 'matplotlib'],
'iaca': ['kerncraft'],
}
)