forked from ibmresilient/resilient-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
52 lines (44 loc) · 1.52 KB
/
setup.cfg
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
52
# (c) Copyright IBM Corp. 2010, 2023. All Rights Reserved.
[metadata]
name = resilient_lib
description = Python module with library calls which facilitate the development of Apps for IBM SOAR
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/ibmresilient/resilient-python-api/tree/main/resilient-lib
author = IBM SOAR
license = MIT
project_urls =
Documentation = https://ibm.biz/soar-docs
API Docs = https://ibm.biz/soar-python-docs
IBM Community = https://ibm.biz/soarcommunity
Change Log = https://ibm.biz/resilient-lib-changes
classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
keywords = ibm, soar, resilient, resilient-circuits, circuits, resilient-lib, common
[options]
packages = find:
include_package_data = True
python_requires = >=3.9
setup_requires = setuptools_scm
platforms = any
install_requires =
# Our libraries
resilient >= 51.0.2.1
# 3rd party dependencies for all python versions
pytz ~= 2024.1
deprecated ~= 1.2
beautifulsoup4 ~= 4.9
# Python > 3.6
jinja2 ~= 3.1; python_version > "3.6"
# Python == 3.6
jinja2 ~= 3.0; python_version == "3.6"
# Python 2.7
jinja2 ~= 2.0; python_version == "2.7"
[options.entry_points]
resilient.lib.configsection =
gen_config = resilient_lib.util.config:config_section_data
[options.packages.find]
exclude =
tests*