parent
e65775774a
commit
a0259707b2
@ -1,3 +1,5 @@
|
||||
venv
|
||||
__pycache__
|
||||
.mypy_cache
|
||||
dist/
|
||||
riscemu.egg-info
|
||||
|
@ -0,0 +1,4 @@
|
||||
[build-system]
|
||||
requires = ["setuptools", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
@ -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…
Reference in New Issue