-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
25 lines (23 loc) · 892 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
from setuptools import setup
__version__ = "4.9.9"
__author__ = "Maxime Lamothe-Brassard ( Refraction Point, Inc )"
__author_email__ = "[email protected]"
__license__ = "Apache v2"
__copyright__ = "Copyright (c) 2020 Refraction Point, Inc"
setup( name = 'limacharlie',
version = __version__,
description = 'Python API for LimaCharlie.io',
url = 'https://limacharlie.io',
author = __author__,
author_email = __author_email__,
license = __license__,
packages = [ 'limacharlie' ],
zip_safe = True,
install_requires = [ 'requests', 'passlib', 'pyyaml', 'tabulate', 'termcolor' ],
long_description = 'Python API for limacharlie.io, an endpoint detection and response service.',
entry_points = {
'console_scripts': [
'limacharlie=limacharlie.__main__:main',
],
},
)