-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
54 lines (46 loc) · 1.72 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
# Copyright (c) 2017, The MITRE Corporation. All rights reserved.
# See LICENSE.txt for complete terms.
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
CUR_DIR = dirname(abspath(__file__))
INIT_FILE = join(CUR_DIR, "stixmarx", "__init__.py")
VERSION_FILE = join(CUR_DIR, "stixmarx", "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__")
def get_long_description():
with open("README.rst") as f:
return f.read()
setup(
name="stixmarx",
version=get_version(),
author="The MITRE Corporation",
author_email="[email protected]",
description="A data marking API for STIX 1 content.",
long_description=get_long_description(),
long_description_content_type="text/x-rst",
url="https://github.com/mitre/stixmarx",
packages=find_packages(),
install_requires=[
"stix>=1.1.1.19,<1.2.1.0"
],
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
)