-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
51 lines (49 loc) · 1.47 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
from setuptools import find_packages
from setuptools import setup
import fig
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="falcon-integration-gateway",
version=fig.__version__,
author="CRWD Solution Architects",
author_email="[email protected]",
description="The CrowdStrike Demo Falcon Integration Gateway for GCP",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/crowdstrike/falcon-integration-gateway",
packages=find_packages(),
package_data={
'fig': ['../config/*.ini'],
},
include_package_data=True,
install_requires=[
'boto3',
'crowdstrike-falconpy',
'google-cloud-securitycenter',
'google-cloud-resource-manager >= 1.0.2',
'tls-syslog',
'google-auth',
'google-api-python-client',
'py7zr'
],
extras_require={
'devel': [
'flake8',
'pylint',
'pytest',
'bandit',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
],
python_requires='>=3.6, <3.12'
)