-
Notifications
You must be signed in to change notification settings - Fork 115
/
setup.cfg
45 lines (42 loc) · 1014 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
34
35
36
37
38
39
40
41
42
43
44
45
[metadata]
name = pyvex
version = attr: pyvex.__version__
description = A Python interface to libVEX and VEX IR
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/angr/pyvex
license = BSD-2-Clause
license_files =
LICENSE
pyvex_c/LICENSE
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages = find:
install_requires =
bitstring
cffi>=1.0.3;implementation_name == 'cpython'
python_requires = >=3.10
include_package_data = True
[options.extras_require]
docs =
furo
myst-parser
sphinx
sphinx-autodoc-typehints
fuzzing =
atheris>=2.3.0
testing =
pytest
pytest-xdist
[options.package_data]
pyvex =
lib/*
include/*
py.typed