-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
26 lines (24 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
import setuptools
from setuptools import setup
setup(
name="cp-mgmt-api-sdk",
version="1.8.0",
author="API team",
author_email="[email protected]",
license='Apache 2.0',
description="Check Point Management API SDK",
long_description="Check Point API Python Development Kit simplifies the usage of the Check Point Management APIs. "
"The kit contains the API library project, "
"and sample projects demonstrating the capabilities of the library. "
"The kit is python 2 and 3 compatible code.",
long_description_content_type="text/plain",
url="https://github.com/CheckPointSW/cp_mgmt_api_python_sdk.git",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
metadata_version="1.2",
)