-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
79 lines (66 loc) · 2.29 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
# Copyright (c) 2018 - The MITRE Corporation
# For license information, see the LICENSE.txt file
from io import open # Allow `encoding` kwarg on Python 2.7
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
BASE_DIR = dirname(abspath(__file__))
VERSION_FILE = join(BASE_DIR, 'maec', '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', encoding='utf-8') as f:
return f.read()
install_requires = [
'lxml>=2.2.3 ; python_version == "2.7" or python_version >= "3.5"',
'lxml>=2.2.3,<4.4.0 ; python_version > "2.7" and python_version < "3.5"',
'mixbox>=1.0.4',
'cybox>=2.1.0.13,<2.1.1.0',
]
extras_require = {
'docs': [
'Sphinx',
'sphinx_rtd_theme',
],
'test': [
'nose',
'tox',
],
}
setup(
name="maec",
version=get_version(),
author="MAEC Project",
author_email="[email protected]",
description="An API for parsing and creating MAEC content.",
long_description=get_long_description(),
url="https://maecproject.github.io/",
packages=find_packages(),
install_requires=install_requires,
extras_require=extras_require,
license="BSD",
classifiers=[
"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",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
project_urls={
'Documentation': 'https://maec.readthedocs.io/',
'Source Code': 'https://github.com/MAECProject/python-maec/',
'Bug Tracker': 'https://github.com/MAECProject/python-maec/issues/',
},
)