Make README work on PyPI

This commit is contained in:
Elliot Nunn 2019-06-11 16:39:49 +08:00
parent 8918d7fab9
commit 0f7a98c01b
1 changed files with 8 additions and 1 deletions

View File

@ -1,8 +1,15 @@
from setuptools import setup, Extension
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup_args = dict(
name='tbxi',
version='0.6',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.7',
author='Elliot Nunn',
author_email='elliotnunn@fastmail.com',
description='Tools to compile and inspect Macintosh ROM images',