mirror of
https://github.com/RRZE-HPC/asmbench.git
synced 2026-01-07 21:10:05 +01:00
15 lines
393 B
Python
15 lines
393 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='asmjit',
|
|
version='0.1',
|
|
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',
|
|
install_requires=['llvmlite>=0.23.2'],
|
|
)
|