-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.cfg
33 lines (30 loc) · 978 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
32
33
# Source: https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
[metadata]
name = dumpulator
version = v1.0.0
author = Duncan Ogilvie
author_email = [email protected]
description = An easy-to-use library for emulating code in minidump files.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/mrexodia/dumpulator
project_urls =
Bug Tracker = https://github.com/mrexodia/dumpulator/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0)
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
#minidump ~=0.0.21 # this library has a bug, is vendored locally
unicorn ~=2.0.0
pefile >=2021.9.3
capstone ~=4.0.2
develop_requires =
libclang ~=15.0.0
[options.packages.find]
where = src