mirror of
https://github.com/elliotnunn/tbxi.git
synced 2024-12-21 15:29:26 +00:00
Make README work on PyPI
This commit is contained in:
parent
8918d7fab9
commit
0f7a98c01b
9
setup.py
9
setup.py
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user