This repository has been archived by the owner on Apr 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
61 lines (56 loc) · 1.6 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
[tool.poetry]
name = "yaramanager"
version = "0.2.1"
description = "CLI tool to manage your yara rules"
authors = ["3c7 <3c7@posteo.de>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/3c7/yaramanager"
repository = "https://github.com/3c7/yaramanager"
keywords = ["yara", "rule", "manage"]
classifiers = [
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Security",
"Topic :: Utilities"
]
include = [
"LICENSE",
"alembic/*",
"alembic/versions/*",
"resources/*"
]
[tool.poetry.dependencies]
python = "^3.8,<3.11"
SQLAlchemy = "^1.4.2"
plyara = "^2.1.1"
yarabuilder = "^0.0.6"
rich = "^11.2.0"
alembic = "^1.5.8"
click = "^8.0.4"
toml = "^0.10.2"
requests = "^2.25.1"
yara-python = "^4.1.3"
PyMySQL = {version = "^1.0.2", optional = true}
psycopg2 = {version = "^2.9.3", optional = true}
[tool.poetry.dev-dependencies]
pyinstaller = "^4.9"
[tool.poetry.extras]
mysql = ["PyMySQL"]
pgsql = ["psycopg2"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
yaramanager = "yaramanager.commands.cli:cli"
ym = "yaramanager.commands.cli:cli"