-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathsetup.py
45 lines (38 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import find_packages, setup
import cemu.const as const
def readme():
import io
with io.open("README.md", "r", encoding="utf-8") as f:
return f.read()
def get_required_packages():
return [x.strip() for x in open("./requirements.txt", "r").readlines()]
setup(
name=const.PROGNAME,
description=const.DESCRIPTION,
long_description=readme(),
url=const.URL,
download_url=const.RELEASE_LINK,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Assemblers",
"Natural Language :: English",
],
python_requires=">=3.9.0",
author=const.AUTHOR,
author_email=const.EMAIL,
version=const.VERSION,
license=const.LICENSE,
include_package_data=True,
packages=find_packages(),
install_requires=get_required_packages(),
entry_points={
"console_scripts": ["cemu=cemu.__main__:main"],
},
keywords=[
"assembly", "disassembly", "emulation", "x86", "x64", "arm", "aarch64", "mips",
"powerpc", "sparc"
],
)