src/SentinelUtilities/setup.py (30 lines of code) (raw):

""" Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. """ import setuptools INSTALL_REQUIRES = ['azure-loganalytics>=0.1.0', 'azure-mgmt-loganalytics>=0.2.0', 'azure-common>=1.1.25', 'azure-cli-core>=2.7.0' ] with open("LICENSE.txt", "r") as fh: LICENSE_TXT = fh.read() setuptools.setup( name="Azure-Sentinel-Utilities", version="0.6.5", author="Microsoft Sentinel Notebooks Devs", author_email="zhzhao@microsoft.com", description="MICROSOFT SENTINEL NOTEBOOKS PYTHON TOOLS: \ This package is developed to support Microsoft Sentinel Notebooks. \ It is in an early preview stage so please provide feedback, \ report bugs, and suggets for new features.", license=LICENSE_TXT, url="https://github.com/Azure/Azure-Sentinel", python_requires='>=3.6', packages=setuptools.find_packages(), classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", "Operating System :: OS Independent", ], install_requires=INSTALL_REQUIRES, keywords=['security', 'azure', 'sentinel'], zip_safe=False, )