Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Azure
GitHub Repository: Azure/Azure-Sentinel-Notebooks
Path: blob/master/src/SentinelUtilities/setup.py
3253 views
1
"""
2
Copyright (c) Microsoft Corporation. All rights reserved.
3
Licensed under the MIT License. See License.txt in the project root for
4
license information.
5
"""
6
7
import setuptools
8
9
INSTALL_REQUIRES = ['azure-loganalytics>=0.1.0',
10
'azure-mgmt-loganalytics>=0.2.0',
11
'azure-common>=1.1.25',
12
'azure-cli-core>=2.7.0'
13
]
14
15
with open("LICENSE.txt", "r") as fh:
16
LICENSE_TXT = fh.read()
17
18
setuptools.setup(
19
name="Azure-Sentinel-Utilities",
20
version="0.6.5",
21
author="Microsoft Sentinel Notebooks Devs",
22
author_email="[email protected]",
23
description="MICROSOFT SENTINEL NOTEBOOKS PYTHON TOOLS: \
24
This package is developed to support Microsoft Sentinel Notebooks. \
25
It is in an early preview stage so please provide feedback, \
26
report bugs, and suggets for new features.",
27
license=LICENSE_TXT,
28
url="https://github.com/Azure/Azure-Sentinel",
29
python_requires='>=3.6',
30
packages=setuptools.find_packages(),
31
classifiers=[
32
"License :: OSI Approved :: MIT License",
33
"Programming Language :: Python :: 3.6",
34
"Operating System :: OS Independent",
35
],
36
install_requires=INSTALL_REQUIRES,
37
keywords=['security', 'azure', 'sentinel'],
38
zip_safe=False,
39
)
40
41