You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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=riscemu.__author__,
|
|
|
|
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", "riscemu.types"],
|
|
|
|
python_requires=">=3.6",
|
|
|
|
install_requires=[
|
|
|
|
"pyelftools~=0.27"
|
|
|
|
]
|
|
|
|
)
|