-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (28 loc) · 1.07 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
import setuptools
from cwafcli import __version__
setuptools.setup(
name='cwaf-cli',
version=__version__,
packages=setuptools.find_namespace_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"incap=cwafcli.__main__:main"
]
},
install_requires=['requests'],
python_requires='>=3.6',
url='https://github.com/imperva/incapsula-cli',
license='Imperva-Community Developer License',
author='Joe Moore',
author_email='[email protected]',
description="Command-line used to interact with Imperva's Cloud-WAF",
long_description='This application provides a simple to use CLI that reflects industry standards '
'(such as the AWS cli), and enables customers to easily integrate into configurations '
'management, orchestration or automation frameworks to support the DevOps model.',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)