-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·58 lines (46 loc) · 1.54 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
# Copyright (c) 2015 - The MITRE Corporation
# For license information, see the LICENSE.txt file
from os.path import abspath, dirname, join
import sys
from setuptools import setup, find_packages
BASE_DIR = dirname(abspath(__file__))
VERSION_FILE = join(BASE_DIR, 'ramrod', 'version.py')
def get_version():
with open(VERSION_FILE) as f:
for line in f.readlines():
if line.startswith("__version__"):
version = line.split()[-1].strip('"')
return version
raise AttributeError("Package does not have a __version__")
py_maj, py_minor = sys.version_info[:2]
if (py_maj, py_minor) < (2, 6) or (py_maj == 3 and py_minor < 3):
raise Exception('stix-ramrod requires Python 2.6, 2.7 or 3.3+')
fn_readme = join(BASE_DIR, "README.rst")
with open(fn_readme) as f:
readme = f.read()
install_requires = ['lxml>=3.3.5', 'six>=1.9.0']
extras_require = {
'docs': [
'Sphinx==1.3.1',
'sphinx_rtd_theme==0.1.8',
],
'test': [
"nose==1.3.0",
"tox==1.6.1"
],
}
setup(
name='stix-ramrod',
description='STIX and CybOX upgrade API and utilities.',
author='The MITRE Corporation',
author_email='[email protected]',
url='http://stix.mitre.org/',
version=get_version(),
packages=find_packages(),
scripts=['ramrod/scripts/ramrod_update.py', 'ramrod/scripts/update_ns.py'],
install_requires=install_requires,
extras_require=extras_require,
long_description=readme,
keywords="stix cybox ramrod stix-ramrod"
)