-
Notifications
You must be signed in to change notification settings - Fork 321
/
setup.py
80 lines (67 loc) · 2.48 KB
/
setup.py
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
# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
"""Setup script for msticpy."""
import re
import setuptools
with open("msticpy/_version.py", "r", encoding="utf-8") as fd:
v_match = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE)
__version__ = v_match[1] if v_match else "no version"
with open("requirements.txt", "r", encoding="utf-8") as fh:
INSTALL_REQUIRES = fh.readlines()
with open("requirements-dev.txt", "r", encoding="utf-8") as fh:
INSTALL_DEV_REQUIRES = fh.readlines()
def _combine_extras(extras: list) -> list:
return list(
{pkg for name, pkgs in EXTRAS.items() for pkg in pkgs if name in extras}
)
# Extras definitions
EXTRAS = {
"dev": INSTALL_DEV_REQUIRES,
"vt3": ["vt-py>=0.18.0", "vt-graph-api>=2.0"],
"splunk": ["splunk-sdk>=1.6.0,!=2.0.0"],
"sumologic": ["sumologic-sdk>=0.1.11", "openpyxl>=3.0"],
"kql": ["KqlmagicCustom[jupyter-extended]>=0.1.114.post22"],
"azure": [
"azure-mgmt-compute>=4.6.2",
"azure-mgmt-core>=1.2.1",
"azure-mgmt-monitor>=2.0.0",
"azure-mgmt-network>=2.7.0",
"azure-mgmt-resource>=16.1.0",
"azure-storage-blob>=12.5.0",
"azure-mgmt-resourcegraph>=8.0.0",
],
"azure_query": [],
"keyvault": [],
"ml": [
"scikit-learn>=1.0.0",
"scipy>=1.1.0",
"statsmodels>=0.11.1",
"matplotlib>=3.0.0",
],
"sql2kql": ["mo-sql-parsing>=8, <9.0.0"],
"riskiq": ["passivetotal>=2.5.3", "requests>=2.31.0"],
"panel": ["panel>=0.14.4"],
"aiagents": ["pyautogen[retrievechat]>=0.2.28"],
}
extras_all = [
extra for name, extras in EXTRAS.items() for extra in extras if name != "dev"
]
EXTRAS["all"] = extras_all
# Create combination extras
EXTRAS["all"] = sorted(
_combine_extras(list({name for name in EXTRAS if name != "dev"}))
)
EXTRAS["test"] = sorted(_combine_extras(["all", "dev"]))
EXTRAS["sentinel"] = EXTRAS["azure"]
EXTRAS["azsentinel"] = EXTRAS["sentinel"]
EXTRAS["azuresentinel"] = EXTRAS["sentinel"]
if __name__ == "__main__":
setuptools.setup(
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS,
version=__version__,
package_data={"docs": ["msticpy/docs/source/**/*.rst"]},
)