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
|
|
|
|
2018-04-02 13:51:51 +02:00
|
|
|
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
VERSION_FILE = os.path.join(BASE_DIR, 'stix2', 'version.py')
|
2017-07-19 23:51:07 +02:00
|
|
|
|
2017-07-06 15:39:33 +02:00
|
|
|
|
|
|
|
def get_version():
|
2018-04-02 13:51:51 +02:00
|
|
|
with open(VERSION_FILE) as f:
|
2017-07-06 15:39:33 +02:00
|
|
|
for line in f.readlines():
|
2018-06-30 00:38:04 +02:00
|
|
|
if line.startswith('__version__'):
|
2017-07-06 15:39:33 +02:00
|
|
|
version = line.split()[-1].strip('"')
|
|
|
|
return version
|
|
|
|
raise AttributeError("Package does not have a __version__")
|
|
|
|
|
|
|
|
|
2018-10-17 13:34:15 +02:00
|
|
|
def get_long_description():
|
|
|
|
with open('README.rst') as f:
|
|
|
|
return 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',
|
2018-10-17 13:34:15 +02:00
|
|
|
long_description=get_long_description(),
|
2018-11-29 16:53:54 +01:00
|
|
|
url='https://oasis-open.github.io/cti-documentation/',
|
2017-07-19 23:51:07 +02:00
|
|
|
author='OASIS Cyber Threat Intelligence Technical Committee',
|
|
|
|
author_email='cti-users@lists.oasis-open.org',
|
2018-11-29 16:53:54 +01:00
|
|
|
maintainer='Chris Lenk, Emmanuelle Vargas-Gonzalez',
|
|
|
|
maintainer_email='clenk@mitre.org, emmanuelle@mitre.org',
|
2017-07-19 23:51:07 +02:00
|
|
|
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.4',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-10-03 17:57:31 +02:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2017-07-19 23:51:07 +02:00
|
|
|
],
|
2017-11-02 12:48:37 +01:00
|
|
|
keywords='stix stix2 json cti cyber threat intelligence',
|
|
|
|
packages=find_packages(exclude=['*.test']),
|
2017-07-19 23:51:07 +02:00
|
|
|
install_requires=[
|
|
|
|
'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',
|
2017-08-22 00:16:10 +02:00
|
|
|
'six',
|
2017-08-18 20:22:57 +02:00
|
|
|
'stix2-patterns',
|
2017-07-19 23:51:07 +02:00
|
|
|
],
|
2018-11-29 16:53:54 +01:00
|
|
|
project_urls={
|
|
|
|
'Documentation': 'https://stix2.readthedocs.io/',
|
|
|
|
'Source Code': 'https://github.com/oasis-open/cti-python-stix2/',
|
|
|
|
'Bug Tracker': 'https://github.com/oasis-open/cti-python-stix2/issues/',
|
|
|
|
},
|
2018-04-02 15:25:26 +02:00
|
|
|
extras_require={
|
2018-07-13 17:10:05 +02:00
|
|
|
'taxii': ['taxii2-client'],
|
|
|
|
},
|
2017-01-17 17:54:39 +01:00
|
|
|
)
|