11 lines
266 B
Python
11 lines
266 B
Python
|
#!/usr/bin/env python
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name='stix2',
|
||
|
description="Produce and consume STIX 2 JSON content",
|
||
|
version='0.0.1',
|
||
|
packages=find_packages(),
|
||
|
keywords="stix stix2 json cti cyber threat intelligence",
|
||
|
)
|