forked from CybOXProject/python-cybox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 749 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
24
# Copyright (c) 2013, The MITRE Corporation. All rights reserved.
# See LICENSE.txt for complete terms.
from setuptools import setup, find_packages
import cybox
setup(
name="cybox",
version=cybox.__version__,
author="CybOX Project, MITRE Corporation",
author_email="cybox@mitre.org",
description="A Python library for parsing and generating CybOX content.",
url="http://cybox.mitre.org",
packages=find_packages(),
install_requires=['lxml>=2.3', 'python-dateutil'],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
)