cti-python-stix2/setup.py

17 lines
352 B
Python
Raw Normal View History

2017-01-17 17:54:39 +01:00
#!/usr/bin/env python
from setuptools import setup, find_packages
2017-01-17 22:58:19 +01:00
install_requires = [
'pytz',
2017-04-10 16:18:54 +02:00
'six',
2017-01-17 22:58:19 +01:00
]
2017-01-17 17:54:39 +01:00
setup(
name='stix2',
description="Produce and consume STIX 2 JSON content",
version='0.0.1',
packages=find_packages(),
2017-01-17 22:58:19 +01:00
install_requires=install_requires,
2017-01-17 17:54:39 +01:00
keywords="stix stix2 json cti cyber threat intelligence",
)