Released v1.0.0 to PyPi

float_support v1.0.0
Anton Lydike 3 years ago
parent e65775774a
commit a0259707b2

2
.gitignore vendored

@ -1,3 +1,5 @@
venv venv
__pycache__ __pycache__
.mypy_cache .mypy_cache
dist/
riscemu.egg-info

@ -13,6 +13,11 @@ This emulator contains:
* Basic implementation of some syscalls * Basic implementation of some syscalls
* A debugging environment * A debugging environment
## Installation:
```bash
$ pip install riscemu
```
## Running simple Assembly: ## Running simple Assembly:
A couple of basic assembly programs are provided inside `examples/`, such as [`hello-world.asm`](examples/hello-world.asm). A couple of basic assembly programs are provided inside `examples/`, such as [`hello-world.asm`](examples/hello-world.asm).

@ -0,0 +1,4 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

@ -27,4 +27,5 @@ from .CPU import CPU
from .Config import RunConfig from .Config import RunConfig
__author__ = "Anton Lydike <Anton@Lydike.com>" __author__ = "Anton Lydike <Anton@Lydike.com>"
__copyright__ = "Copyright 2021 Anton Lydike" __copyright__ = "Copyright 2021 Anton Lydike"
__version__ = '1.0.0'

@ -0,0 +1,31 @@
import setuptools
import riscemu
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="riscemu",
version=riscemu.__version__,
author="Anton Lydike",
author_email="pip@antonlydike.de",
description="RISC-V userspace and privileged emulator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/antonlydike/riscemu",
project_urls={
"Bug Tracker": "https://github.com/AntonLydike/riscemu/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=["riscemu", "riscemu.decoder", "riscemu.instructions", "riscemu.IO", "riscemu.priv"],
python_requires=">=3.6",
install_requires=[
"pyelftools~=0.27"
]
)
Loading…
Cancel
Save