diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-12-25 16:40:23 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-12-25 16:43:26 +0000 |
commit | 335c9f22efc319ea0c3232a6dfd69c425153c89b (patch) | |
tree | bcf4272d18be3b78e3015b70a8b460b56fe8fac3 | |
parent | 4fff86f3fdb3c9cde72fa5cf3f0d734aef5721b4 (diff) | |
download | z80count-335c9f22efc319ea0c3232a6dfd69c425153c89b.tar.gz z80count-335c9f22efc319ea0c3232a6dfd69c425153c89b.zip |
Moved home
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | setup.py | 7 |
2 files changed, 6 insertions, 8 deletions
@@ -6,7 +6,7 @@ and adds comments to the code with the cycles used by the instruction. It needs testing and probably a proper Z80 parser, but it works for me and the Z80 assembler syntax I use. -![Demo with vim](https://github.com/reidrac/z80count/raw/master//etc/demo-vim.gif) +<img src="https://git.usebox.net/z80count/plain/etc/demo-vim.gif" alt="demo" style="width:800px;"> ## Install @@ -16,14 +16,13 @@ To install for production you can use `pip`: pip3 install --user z80count -Or you can download the package from [z80count's releases -tab](https://github.com/reidrac/z80count/releases), unpack and run: +Or you can download the package from [z80count's refs tab](https://git.usebox.net/z80count/refs/), unpack and run: python3 setup.py install To install for development run: - git clone https://github.com/reidrac/z80count.git + git clone https://git.usebox.net/z80count cd z80count pip3 install -e ".[dev]" @@ -5,7 +5,7 @@ from z80count.z80count import version def readme(): try: - return open('README.md').read() + return open("README.md").read() except: return "" @@ -27,13 +27,12 @@ setup( keywords="", author="Juan J. Martinez", author_email="jjm@usebox.net", - url="https://github.com/reidrac/z80count", + url="https://git.usebox.net/z80count/about/", license="MIT", packages=find_packages(), include_package_data=True, zip_safe=False, - install_requires=[ - ], + install_requires=[], extras_require={ "dev": [ "pytest", |