Skip to content

Commit 58b88e6

Browse files
author
Kirill V. Lyadvinsky
committed
Prepare for testing PyPI
1 parent 62b70c3 commit 58b88e6

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Tools to manipulate files from Z80 Spectrum diskettes #
1+
# Tools to manipulate files from ZX Spectrum diskettes #
22

3-
Here's a set of utils to manipulate files that were copied from TR-DOS diskettes. The tools were written to simplify the following workflow:
3+
Heres a set of utils to manipulate files that were copied from a TR-DOS diskette or from a tape.
44

5+
Originally the tools were written to simplify the following workflow:
56
1. Grab diskette image using [Hobeta](http://speccy.info/Hobeta) tool.
67
2. Strip the file header and save the result to a new file.
78
3. Convert resulting Zeus Z80 assembler file to the plain text format.

setup.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,15 @@
44
from setuptools import setup, find_packages
55

66

7-
with open('README.md') as f:
8-
readme = f.read()
9-
107
with open('LICENSE') as f:
118
flicense = f.read()
129

1310
setup(
1411
name='zxtools',
15-
version='0.0.2',
16-
description='Tools to manipulate files from Z80 Spectrum diskettes',
17-
long_description=readme,
12+
version='1.0.0',
13+
description='Tools to manipulate files from ZX Spectrum',
14+
long_description='Here’s a set of utils to manipulate files that were copied from a TR-DOS diskette or from a tape.'
15+
'\n\nYou can find more info in README.md at https://github.com/codeatcpp/zxtools',
1816
author='Kirill V. Lyadvinsky',
1917
author_email='[email protected]',
2018
download_url='https://github.com/codeatcpp/zxtools',
@@ -23,7 +21,7 @@
2321
packages=find_packages(exclude=('test', 'docs')),
2422
test_suite="test",
2523
classifiers=[
26-
'Development Status :: 2 - Pre-Alpha',
24+
'Development Status :: 5 - Production/Stable',
2725
'Environment :: Console',
2826
'Intended Audience :: Developers',
2927
'Programming Language :: Python :: 3 :: Only',

0 commit comments

Comments
 (0)