summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2023-12-25 16:40:23 +0000
committerJuan J. Martinez <jjm@usebox.net>2023-12-25 16:43:26 +0000
commit335c9f22efc319ea0c3232a6dfd69c425153c89b (patch)
treebcf4272d18be3b78e3015b70a8b460b56fe8fac3
parent4fff86f3fdb3c9cde72fa5cf3f0d734aef5721b4 (diff)
downloadz80count-335c9f22efc319ea0c3232a6dfd69c425153c89b.tar.gz
z80count-335c9f22efc319ea0c3232a6dfd69c425153c89b.zip
Moved home
-rw-r--r--README.md7
-rw-r--r--setup.py7
2 files changed, 6 insertions, 8 deletions
diff --git a/README.md b/README.md
index 3f5e9bd..269952f 100644
--- a/README.md
+++ b/README.md
@@ -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]"
diff --git a/setup.py b/setup.py
index 614e98b..151e089 100644
--- a/setup.py
+++ b/setup.py
@@ -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",