mirror of
https://github.com/RRZE-HPC/asmbench.git
synced 2025-09-05 00:20:06 +02:00
20 lines
555 B
Python
20 lines
555 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
with open('README.md') as f:
|
|
long_description = f.read()
|
|
|
|
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',
|
|
long_description_content_type='text/markdown',
|
|
long_description=long_description,
|
|
install_requires=['llvmlite>=0.23.2', 'psutil'],
|
|
)
|