-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.19 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.19 KB
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
33
34
35
36
from setuptools import setup
setup(
name="cortexutils",
version="2.2.1",
description=(
"A Python library for including utility classes for "
"Cortex analyzers and responders"
),
long_description=open("README").read(),
author="TheHive-Project",
author_email="support@thehive-project.org",
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+)", # noqa
"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",
)