forked from vivisect/vivisect
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
65 lines (55 loc) · 1.75 KB
/
pyproject.toml
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
[build-system]
requires = ['setuptools>=68.0.0', 'wheel']
build-backend = 'setuptools.build_meta'
[project]
name = 'vivisect'
version = '1.2.1'
authors = [
{ name = 'The Vivisect Peeps', email = '[email protected]'}
]
description = 'Pure python disassembler, debugger, emulator, and static analysis framework'
readme = 'README.md'
requires-python = '>=3.8'
license = { text = 'Apache License 2.0' }
classifiers = [
'Topic :: Security',
'Topic :: Software Development :: Disassemblers',
'Topic :: Software Development :: Debuggers',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: Apache Software License',
]
dependencies = [
'pyasn1>=0.5.0,<0.6.0',
'pyasn1-modules>=0.3.0,<0.4.0',
'cxxfilt>=0.3.0,<0.4.0',
'msgpack>=1.0.0,<1.1.0',
'pycparser>=2.20',
]
[project.urls]
Homepage = 'https://vivisect.readthedocs.io/en/latest/'
Documentation = 'https://vivisect.readthedocs.io/en/latest/'
Repository = 'https://github.com/vivisect/vivisect'
Changelog = 'https://vivisect.readthedocs.io/en/latest/vivisect/changelog.html'
[project.optional-dependencies]
dev = [
'bump2version>=1.0.0,<1.1.0'
]
docs = [
'sphinx>=7.1.0,<7.2.0',
'sphinx-rtd-theme>=1.2.0,<1.3.0',
]
gui = [
# TODO: PyQT6 is out, but that's a beast that deserves its own PR.
'pyqt5==5.15.7',
'pyqtwebengine==5.15.6',
]
[project.scripts]
vivbin = 'vivisect.vivbin:main'
vdbbin = 'vdb.vdbbin:main'
vivserver = 'vivisect.remote.server:main'
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
'*' = ['*.dll', '*.dylib', '*.lyt', 'Makefile', '*.c', '*.h', '*.yes', '*.sh']
[tool.setuptools.packages.find]
include = ['vivisect*', 'vtrace*', 'envi*', 'PE*', 'Elf*', 'vdb*', 'visgraph*', 'vstruct*', 'vqt*', 'cobra*']