forked from IBM-Security/ibmsecurity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1010 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
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 = '2018.09.13.0',
description = 'Idempotent functions for IBM Security Appliance REST APIs',
author='IBM',
author_email='[email protected]',
url='',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: IBM :: Apache',
'Operating System :: OS Independent',
'Development Status :: GA',
'Environment :: Console',
'Intended Audience :: IBM Security Appliance Users',
'Topic :: IBM:: Security'
],
zip_safe = False,
install_requires = [
'importlib',
'requests'
]
)