-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
27 lines (26 loc) · 1.11 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
from setuptools import setup, find_packages
setup(
name="ibmsecurity",
packages=find_packages(),
# Date of release used for version - please be sure to use YYYY.MM.DD.seq#, MM and DD should be two digits e.g. 2017.02.05.0
# seq# will be zero unless there are multiple release on a given day - then increment by one for additional release for that date
version="2024.10.11.0",
description="Idempotent functions for IBM Security Appliance REST APIs",
author="IBM",
author_email="[email protected]",
url="",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Build Tools",
],
zip_safe=False,
install_requires=["requests", "jmespath"],
)