File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
- # Tools to manipulate files from Z80 Spectrum diskettes #
1
+ # Tools to manipulate files from ZX Spectrum diskettes #
2
2
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
+ Here’ s a set of utils to manipulate files that were copied from a TR-DOS diskette or from a tape.
4
4
5
+ Originally the tools were written to simplify the following workflow:
5
6
1 . Grab diskette image using [ Hobeta] ( http://speccy.info/Hobeta ) tool.
6
7
2 . Strip the file header and save the result to a new file.
7
8
3 . Convert resulting Zeus Z80 assembler file to the plain text format.
Original file line number Diff line number Diff line change 4
4
from setuptools import setup , find_packages
5
5
6
6
7
- with open ('README.md' ) as f :
8
- readme = f .read ()
9
-
10
7
with open ('LICENSE' ) as f :
11
8
flicense = f .read ()
12
9
13
10
setup (
14
11
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 \n You can find more info in README.md at https://github.com/codeatcpp/zxtools' ,
18
16
author = 'Kirill V. Lyadvinsky' ,
19
17
20
18
download_url = 'https://github.com/codeatcpp/zxtools' ,
23
21
packages = find_packages (exclude = ('test' , 'docs' )),
24
22
test_suite = "test" ,
25
23
classifiers = [
26
- 'Development Status :: 2 - Pre-Alpha ' ,
24
+ 'Development Status :: 5 - Production/Stable ' ,
27
25
'Environment :: Console' ,
28
26
'Intended Audience :: Developers' ,
29
27
'Programming Language :: Python :: 3 :: Only' ,
You can’t perform that action at this time.
0 commit comments