-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
34 lines (29 loc) · 956 Bytes
/
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
# read the contents of your README file
from pathlib import Path
from setuptools import find_packages, setup # type: ignore
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
VERSION = "1.0.5"
setup(
name="cloudgrep",
version=VERSION,
description="cloudgrep searches cloud storage",
long_description=long_description,
long_description_content_type="text/markdown",
author="Cado Security",
author_email="[email protected]",
url="https://github.com/cado-security/cloudgrep",
download_url="https://github.com/cado-security/cloudgrep/archive/refs/heads/main.zip",
py_modules=["cloudgrep"],
install_requires=[
"botocore",
"boto3",
"python-dateutil",
"azure-storage-blob",
"azure-core",
"azure-identity",
"google-cloud-storage",
"yara-python-wheel",
],
packages=find_packages(),
)