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