-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
86 lines (78 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env python
from codecs import open
import os.path
from setuptools import find_packages, setup
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
VERSION_FILE = os.path.join(BASE_DIR, "medallion", "version.py")
def get_version():
with open(VERSION_FILE, encoding="utf-8") 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()
setup(
name="medallion",
version=get_version(),
description="A TAXII 2.1 Server implementing required endpoints",
long_description=get_long_description(),
long_description_content_type="text/x-rst",
url="https://oasis-open.github.io/cti-documentation/",
author="OASIS Cyber Threat Intelligence Technical Committee",
author_email="cti-users@lists.oasis-open.org",
maintainer="Emmanuelle Vargas-Gonzalez",
maintainer_email="emmanuelle@mitre.org",
license="BSD",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Security",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="taxii taxii2 server json cti cyber threat intelligence",
packages=find_packages(exclude=["*.test", "*.test.data"]),
install_requires=[
"appdirs>=1.4.4",
"environ-config>=21.1",
"flask>=0.12.1",
"Flask-HTTPAuth",
"jsonmerge",
"packaging",
"pytz",
"six",
],
entry_points={
"console_scripts": [
"medallion = medallion.scripts.run:main",
],
},
extras_require={
"test": [
"coverage",
"pytest",
"pytest-cov",
"pytest-subtests",
"tox",
],
"docs": [
"sphinx",
"sphinx-prompt",
],
"mongo": [
"pymongo",
],
},
project_urls={
'Documentation': 'https://medallion.readthedocs.io/',
'Source Code': 'https://github.com/oasis-open/cti-taxii-server/',
'Bug Tracker': 'https://github.com/oasis-open/cti-taxii-server/issues/',
},
)