changed to rst readme

This commit is contained in:
Julian Hammer
2018-09-25 10:37:09 +02:00
parent 2cd25b4bcd
commit 21fb4d1c4d
3 changed files with 12 additions and 13 deletions

View File

@@ -1,19 +1,18 @@
from setuptools import setup, find_packages
with open('README.md') as f:
with open('README.rst') as f:
long_description = f.read()
setup(
name='asmbench',
version='0.1.1',
version='0.1.1.2',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
url='',
url='https://github.com/RRZE-HPC/asmbench',
license='AGPLv3',
author='Julian Hammer',
author_email='julian.hammer@fau.de',
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={