forked from oasis-open/cti-pattern-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.09 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
33
34
35
from setuptools import find_packages, setup
setup(
name='stix2-matcher',
version='0.1.0',
packages=find_packages(),
description='Match STIX content against STIX patterns',
install_requires=[
'antlr4-python2-runtime==4.7 ; python_version < "3"',
'antlr4-python3-runtime==4.7 ; python_version >= "3"',
'python-dateutil',
'six',
'stix2-patterns>=1.0.0',
'typing ; python_version < "3.5" and python_version >= "3"',
],
tests_require=[
'pytest>=2.9.2'
],
entry_points={
'console_scripts': [
'stix2-matcher = stix2matcher.matcher:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)