Skip to content

Commit b56f64b

Browse files
author
Kirill V. Lyadvinsky
committed
PyPI fix
1 parent 3956fad commit b56f64b

File tree

5 files changed

+27
-20
lines changed

5 files changed

+27
-20
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
test:
44
python3 -m unittest discover -v
55

6-
init:
7-
pip install -r requirements.txt
6+
#init:
7+
# pip install -r requirements.txt
88

99
clean:
1010
rm -rf test/*.pyc

README.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
============================================
2+
Python tools to manipulate ZX Spectrum files
3+
============================================
4+
5+
Here’s a set of utils to manipulate files that were copied from a TR-DOS diskette or from a tape.
6+
7+
Originally the tools were written to simplify the following workflow:
8+
9+
1. Grab diskette image using `Hobeta <http://speccy.info/Hobeta>`_ tool.
10+
2. Strip the file header and save the result to a new file.
11+
3. Convert resulting Zeus Z80 assembler file to the plain text format.
12+
13+
But you can use them in the way you need. And it's very easy to use: download the package, run ``setup.py`` (or install via ``pip install zxtools``), invoke in the following way::
14+
15+
$ python -m zxtools.hobeta strip input.hobetta result.zeus
16+
$ python -m zxtools.zeus2txt result.zeus listing.txt
17+
18+
NOTE: You need Python 3 to use this package.

requirements.txt

Whitespace-only changes.

setup.py

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

66

7+
with open('README.rst') as f:
8+
readme = f.read()
9+
710
setup(
811
name='zxtools',
9-
version='1.0.0',
12+
version='1.0.11',
1013
description='Tools to manipulate files from ZX Spectrum',
11-
long_description='Here’s a set of utils to manipulate files that were copied from a TR-DOS diskette or from a tape.'
12-
'\n\nYou can find more info in README.md at https://github.com/codeatcpp/zxtools',
14+
long_description=readme,
1315
author='Kirill V. Lyadvinsky',
1416
author_email='[email protected]',
1517
download_url='https://github.com/codeatcpp/zxtools',
@@ -19,8 +21,10 @@
1921
test_suite="test",
2022
classifiers=[
2123
'Development Status :: 5 - Production/Stable',
24+
'Operating System :: OS Independent',
2225
'Environment :: Console',
2326
'Intended Audience :: Developers',
27+
'Programming Language :: Python',
2428
'Programming Language :: Python :: 3 :: Only',
2529
'Topic :: Software Development',
2630
'Topic :: Utilities'

0 commit comments

Comments
 (0)