-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
75 lines (57 loc) · 1.74 KB
/
setup.py
File metadata and controls
75 lines (57 loc) · 1.74 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# https://packaging.python.org/en/latest/distributing.html
# https://github.com/pypa/sampleproject
from setuptools import setup, find_packages
from codecs import open
from os import path, system
import sys, re
here = path.abspath(path.dirname(__file__))
# load __version__, __doc__, _author, _license and _url
exec(open(path.join(here, 'iasm', '__init__.py')).read())
long_description = __doc__
# the following are the required dependencies
required_deps=[
'keystone-engine',
'unicorn',
'prompt_toolkit',
'Pygments',
'tabulate',
'pypager',
'appdirs',
'bitstring',
'xview',
'capstone',
]
setup(
name='iasm',
version=__version__,
description=__doc__,
long_description=long_description,
url=_url,
# Author details
author=_author,
author_email='use-github-issues@example.com',
license=_license,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Assemblers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.7',
install_requires=required_deps,
keywords='asm, assembler, assembly, x86, arm',
packages=find_packages(),
data_files=[("", ["LICENSE"])],
package_data={'iasm':["datasheets/*"]},
entry_points={
'console_scripts': [
'iasm = iasm.iasm:main',
],
}
)