-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
42 lines (37 loc) · 1.06 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
36
37
38
39
40
41
42
#!/usr/bin/env python
from codecs import open
from setuptools import find_packages, setup
def get_long_description():
with open('README.rst') as f:
return f.read()
setup(
name='stix2-matcher',
version='3.0.0',
packages=find_packages(),
long_description=get_long_description(),
description='Match STIX content against STIX patterns',
long_description_content_type='text/x-rst',
install_requires=[
'python-dateutil',
'six',
'stix2-patterns>=1.0.0',
'deepmerge>=1.0.1'
],
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 :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)