-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
64 lines (54 loc) · 1.81 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
[tool.poetry]
name = "yara_scanner"
version = "2.0.3"
description = "A Python wrapper library for libyara and a local server for fully utilizing the CPUs of the system to scan with yara."
authors = ["John Davison <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/ace-ecosystem/yara_scanner"
repository = "https://github.com/ace-ecosystem/yara_scanner"
readme = "README.md"
keywords = ["yara"]
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
"Intended Audience :: Information Technology",
'Operating System :: OS Independent',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: Apache Software License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
include = [ "ysc.py", "yss.py" ]
[tool.poetry.dependencies]
python = "^3.7"
psutil = "^5.6.7"
yara-python = "<4.1"
plyara = "^2.1.1"
progress = "^1.5"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
pylint = "^2.4.4"
pytest-datadir = "^1.3.1"
sphinx = "^2.4.0"
pygments = "^2.5"
[tool.poetry.scripts]
# command line scanner
scan = "yara_scanner:main"
# yara scanner server client
ysc = "ysc:main"
# yara scanner server
yss = "yss:main"
[tool.black]
line-length = 120
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"