forked from lief-project/LIEF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (42 loc) · 1.23 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[metadata]
name = lief
author = Romain Thomas
author_email = [email protected]
description = Library to instrument executable formats
long_description = file: package/README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/lief-project/LIEF
keywords = parser, elf, pe, macho, reverse-engineering
license = Apache License 2.0
license_files =
LICENSE
project_urls =
Documentation=https://lief.quarkslab.com/doc/latest
Funding=https://lief.quarkslab.com/about
Source=https://github.com/lief-project/LIEF/
Tracker=https://github.com/lief-project/LIEF/issues
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: C++
Topic :: Software Development :: Libraries
[options]
zip_safe = False
packages = find:
include_package_data = True
python_requires = >=3.6
scripts =
examples/python/elf_reader.py
examples/python/pe_reader.py
examples/python/macho_reader.py
[build_sphinx]
project = LIEF
source-dir = doc/sphinx
config-dir = doc/sphinx
build-dir = doc/sphinx/_build
fresh-env = True
[build_ext]
inplace=1
[aliases]
dev = build --debug -j8 develop --user
release = build -j8 develop --user