cti-python-stix2/setup.py

71 lines
2.3 KiB
Python
Raw Permalink Normal View History

2017-01-17 17:54:39 +01:00
#!/usr/bin/env python
from codecs import open
import os.path
from setuptools import find_packages, setup
2017-01-17 17:54:39 +01:00
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
VERSION_FILE = os.path.join(BASE_DIR, 'stix2', 'version.py')
2017-07-06 15:39:33 +02:00
def get_version():
with open(VERSION_FILE) as f:
2017-07-06 15:39:33 +02:00
for line in f.readlines():
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__")
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(),
description='Produce and consume STIX 2 JSON content',
long_description=get_long_description(),
2019-08-12 18:28:27 +02:00
long_description_content_type='text/x-rst',
2018-11-29 16:53:54 +01:00
url='https://oasis-open.github.io/cti-documentation/',
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',
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',
'Programming Language :: Python :: 3.8',
],
keywords='stix stix2 json cti cyber threat intelligence',
packages=find_packages(exclude=['*.test', '*.test.*']),
install_requires=[
'enum34 ; python_version<"3.4"',
2017-08-15 19:54:16 +02:00
'pytz',
'requests',
2017-08-15 19:54:16 +02:00
'simplejson',
'six',
'stix2-patterns',
],
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/',
},
extras_require={
'taxii': ['taxii2-client'],
'semantic': ['haversine', 'fuzzywuzzy'],
},
2017-01-17 17:54:39 +01:00
)