-
Notifications
You must be signed in to change notification settings - Fork 415
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "androidemu"
version = "0.0.3"
requires-python = ">=3.7, <3.12"
authors = [
{ name = "AeonLucid", email = "[email protected]" },
]
description = "Allows you to partly emulate an Android native library."
readme = "README.md"
license = { text = "GPLv3" }
keywords = ["emulation", "android"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: System :: Emulators",
"Intended Audience :: Developers",
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = [
"unicorn==2.1.0",
"pyelftools==0.31",
"hexdump==3.3",
"keystone-engine==0.9.2"
]
[project.urls]
Repository = "https://github.com/AeonLucid/AndroidNativeEmu"
"Bug Tracker" = "https://github.com/AeonLucid/AndroidNativeEmu/issues"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]