forked from microsoft/msticpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
71 lines (67 loc) · 1.68 KB
/
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
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
[metadata]
name = msticpy
description = MSTIC Security Tools
long_description = file: README.md
long_description_content_type = text/markdown
author = Ian Hellen
author_email = [email protected]
maintainer = Pete Bryan
maintainer_email = [email protected]
keywords =
security
azure
sentinel
mstic
cybersec
infosec
cyber
cybersecurity
jupyter
notebooks
SOC
hunting
license = MIT License
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Framework :: IPython
Framework :: Jupyter
Intended Audience :: Developers
Intended Audience :: Information Technology
Topic :: Security
Topic :: Software Development :: Libraries :: Python Modules
url = https://github.com/microsoft/msticpy
project_urls =
Documentation = https://msticpy.readthedocs.io
Code = https://github.com/microsoft/msticpy
Issue tracker = https://github.com/microsoft/msticpy/issues
[options]
zip_safe = False
include_package_data = True
package_dir =
msticpy = msticpy
packages = find:
python_requires = >=3.8
[options.packages.find]
include = msticpy*
exclude = tests. tests*. *.tests.*
[flake8]
ignore = E401,E501
exclude =
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
tests,
test*.py
max-line-length = 90
docstring-style = numpy