Files
asmbench/setup.py
2018-07-24 13:12:53 +02:00

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'],
)