-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
31 lines (28 loc) · 935 Bytes
/
setup.cfg
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
[metadata]
name = reccmp
version = attr: reccmp.VERSION
description = Python recompilation tools
license = AGPL-3.0-or-later
classifiers =
Programming Language :: Python :: 3
Programming Language :: C
Programming Language :: C++
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
[options]
packages = find:
include_package_data = True
tests_require = file:requirements-tests.txt
install_requires = file:requirements.txt
[options.packages.find]
exclude =
tests*
[options.entry_points]
console_scripts =
reccmp-datacmp = reccmp.tools.datacmp:main
reccmp-decomplint = reccmp.tools.decomplint:main
reccmp-project = reccmp.tools.project:main
reccmp-reccmp = reccmp.tools.asmcmp:main
reccmp-roadmap = reccmp.tools.roadmap:main
reccmp-stackcmp = reccmp.tools.stackcmp:main
reccmp-verexp = reccmp.tools.verexp:main
reccmp-vtable = reccmp.tools.vtable:main