cti-python-stix2/setup.py

58 lines
1.7 KiB
Python
Raw 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
here = os.path.abspath(os.path.dirname(__file__))
2017-07-06 15:39:33 +02:00
def get_version():
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:
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(),
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",
packages=find_packages(),
install_requires=[
2017-08-15 20:16:49 +02:00
'ordereddict',
'python-dateutil',
2017-08-15 19:54:16 +02:00
'pytz',
'requests',
2017-08-15 19:54:16 +02:00
'simplejson',
'six'
],
2017-01-17 17:54:39 +01:00
)