-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
66 lines (61 loc) · 1.94 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from __future__ import annotations
from os import path
from setuptools import setup
from mrcrowbar.version import __version__
# Get the long description from the README file
here = path.abspath( path.dirname( __file__ ) )
with open( path.join( here, "DESCRIPTION.rst" ), encoding="utf-8" ) as f:
long_description = f.read()
setup(
name="mrcrowbar",
version=__version__,
description=(
"A library and model framework for " "reverse engineering binary file formats"
),
long_description=long_description,
url="https://moral.net.au/mrcrowbar",
license="BSD",
author="Scott Percival",
author_email="code@moral.net.au",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
python_requires=">=3",
install_requires=[
"typing_extensions",
],
extras_require={
"images": ["Pillow >= 2.8.1"],
"audio": ["miniaudio >= 1.41"],
},
packages=[
"mrcrowbar",
"mrcrowbar.lib",
"mrcrowbar.lib.audio",
"mrcrowbar.lib.compressors",
"mrcrowbar.lib.containers",
"mrcrowbar.lib.games",
"mrcrowbar.lib.hardware",
"mrcrowbar.lib.images",
"mrcrowbar.lib.os",
"mrcrowbar.lib.platforms",
],
entry_points={
"console_scripts": [
"mrcdiff = mrcrowbar.cli:mrcdiff",
"mrcdump = mrcrowbar.cli:mrcdump",
"mrchist = mrcrowbar.cli:mrchist",
"mrcpix = mrcrowbar.cli:mrcpix",
"mrcgrep = mrcrowbar.cli:mrcgrep",
"mrcfind = mrcrowbar.cli:mrcfind",
],
},
)