-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
61 lines (56 loc) · 1.81 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_namespace_packages
project_url = "https://github.com/melexis/sphinx-coverity-extension"
requires = [
"Sphinx>=2.1",
"docutils",
"setuptools_scm",
"matplotlib",
"mlx.traceability",
"urlextract",
]
setup(
name="mlx.coverity",
url=project_url,
license="GNU General Public License v3 (GPLv3)",
author="Crt Mori",
author_email="[email protected]",
description="Sphinx coverity extension from Melexis",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Sphinx :: Extension',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Documentation',
'Topic :: Documentation :: Sphinx',
'Topic :: Utilities',
],
platforms="any",
packages=find_namespace_packages(where=".", exclude=("example.*", "example", "tests.*", "tests", "build*")),
package_dir={"": "."},
include_package_data=False,
install_requires=requires,
python_requires='>=3.8',
namespace_packages=['mlx'],
keywords=[
"coverity",
"reporting",
"reStructuredText coverity report",
"sphinx",
"ASPICE",
"ISO26262",
"ASIL",
],
)