forked from eclecticiq/git4intel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.11 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.11 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="git4intel",
description="elasticsearch threat intel client library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/eclecticiq/inc-mission-control-git4intel/",
author="EclecticIQ",
author_email="chris@eclecticiq.com",
version='0.0.1',
license="GNU General Public License v3.0",
packages=find_packages(),
install_requires=[
'elasticsearch',
# 'stix2eiq',
'fastjsonschema',
'taxii2-client',
'python-slugify',
],
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Internet",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)