2017-01-17 17:54:39 +01:00
|
|
|
#!/usr/bin/env python
|
2017-07-19 23:51:07 +02:00
|
|
|
from codecs import open
|
|
|
|
import os.path
|
|
|
|
|
2017-04-25 00:29:56 +02:00
|
|
|
from setuptools import find_packages, setup
|
2017-01-17 17:54:39 +01:00
|
|
|
|
2017-07-19 23:51:07 +02:00
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
2017-07-06 15:39:33 +02:00
|
|
|
|
|
|
|
def get_version():
|
2017-07-20 00:17:48 +02:00
|
|
|
with open('stix2/version.py', encoding="utf-8") as f:
|
2017-07-06 15:39:33 +02:00
|
|
|
for line in f.readlines():
|
|
|
|
if line.startswith("__version__"):
|
|
|
|
version = line.split()[-1].strip('"')
|
|
|
|
return version
|
|
|
|
raise AttributeError("Package does not have a __version__")
|
|
|
|
|
|
|
|
|
2017-07-20 00:04:54 +02:00
|
|
|
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
|
2017-07-19 23:51:07 +02:00
|
|
|
long_description = f.read()
|
2017-01-17 22:58:19 +01:00
|
|
|
|
|
|
|
|
2017-01-17 17:54:39 +01:00
|
|
|
setup(
|
|
|
|
name='stix2',
|
2017-07-06 15:39:33 +02:00
|
|
|
version=get_version(),
|
2017-07-19 23:51:07 +02:00
|
|
|
description='Produce and consume STIX 2 JSON content',
|
|
|
|
long_description=long_description,
|
|
|
|
url='https://github.com/oasis-open/cti-python-stix2',
|
|
|
|
author='OASIS Cyber Threat Intelligence Technical Committee',
|
|
|
|
author_email='cti-users@lists.oasis-open.org',
|
|
|
|
maintainer='Greg Back',
|
|
|
|
maintainer_email='gback@mitre.org',
|
|
|
|
license='BSD',
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Topic :: Security',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
],
|
2017-01-17 17:54:39 +01:00
|
|
|
keywords="stix stix2 json cti cyber threat intelligence",
|
2017-07-19 23:51:07 +02:00
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[
|
2017-08-15 20:16:49 +02:00
|
|
|
'ordereddict',
|
2017-07-19 23:51:07 +02:00
|
|
|
'python-dateutil',
|
2017-08-15 19:54:16 +02:00
|
|
|
'pytz',
|
2017-07-19 23:51:07 +02:00
|
|
|
'requests',
|
2017-08-15 19:54:16 +02:00
|
|
|
'simplejson',
|
|
|
|
'six'
|
2017-07-19 23:51:07 +02:00
|
|
|
],
|
2017-01-17 17:54:39 +01:00
|
|
|
)
|