-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
83 lines (75 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "chickadee"
version = "20230525.1"
description = "Yet another GeoIP enrichment tool."
authors = ["Chapin Bryce <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://chapinb.com/chickadee/"
documentation = "https://chapinb.com/chickadee/"
repository = "https://github.com/chapinb/chickadee"
keywords = ["geoip", "enrichment", "ip", "ip address", "security"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: System Administrators",
"Intended Audience :: Other Audience",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: Utilities"
]
packages = [
{ include = "libchickadee" }
]
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.31.0"
openpyxl = "^3.1"
tqdm = "^4.65"
netaddr = "^0.8.0"
python-evtx = "^0.7.4"
[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-cov = "*"
flake8 = "^6.0.0"
mypy = "*"
types-requests = "*"
pytest-watch = "*"
bandit = "*"
types-openpyxl = "*"
types-tqdm = "*"
black = "*"
isort = "*"
radon = "*"
[tool.poetry.group.docs.dependencies]
sphinx = "^6.1.3"
[tool.poetry.scripts]
chickadee = "libchickadee.chickadee:entry"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
exclude = [
"build",
"dist"
]
[[tool.mypy.overrides]]
module = [
"Evtx",
"Evtx.Evtx",
"_io",
"netaddr"
]
ignore_missing_imports = true