forked from STIXProject/python-stix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 755 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (c) 2013, The MITRE Corporation. All rights reserved.
# See LICENSE.txt for complete terms.
from setuptools import setup, find_packages
import stix
setup(
name="stix",
version=stix.__version__,
author="STIX Project, MITRE Corporation",
author_email="[email protected]",
description="An API for parsing and generating STIX content.",
url="http://stix.mitre.org",
packages=find_packages(),
install_requires=['lxml>=2.3', 'python-dateutil', 'cybox>=2.0.0b1' ],
classifiers=[
"Programming Language :: Python",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
)