-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
32 lines (31 loc) · 1.15 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
30
31
32
from setuptools import setup
setup(
name='cortexutils',
version='2.2.0',
description='A Python library for including utility classes for Cortex analyzers and responders',
long_description=open('README').read(),
author='TheHive-Project',
author_email='[email protected]',
license='AGPL-V3',
url='https://github.com/TheHive-Project/Cortex-Analyzers/tree/master/contrib',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules'],
py_modules=[
'future',
'cortexutils.worker',
'cortexutils.analyzer',
'cortexutils.responder',
'cortexutils.extractor'
],
install_requires=[],
test_suite='tests'
)