-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (34 loc) · 1.26 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
from pathlib import Path
from setuptools import setup, find_packages
BASE_DIR = Path(__file__).parent.resolve(strict=True)
VERSION = '1.1.3'
PACKAGES = [p for p in find_packages() if not p.startswith('tests')]
def get_description():
return (BASE_DIR / 'README.md').read_text()
if __name__ == '__main__':
setup(
version=VERSION,
name='armulator',
description='A pure Python ARM processor emulator',
long_description=get_description(),
long_description_content_type='text/markdown',
url='https://github.com/matan1008/armulator',
author='Matan Perelman',
author_email='[email protected]',
classifiers=[
'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',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
keywords='arm emulator',
packages=PACKAGES,
license='MIT',
package_data={
'armulator': ['armv6/arm_configurations.json'],
},
tests_require=['pytest'],
)