forked from Ericsson/codechecker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.16 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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r", encoding="utf-8", errors="ignore") as fh:
long_description = fh.read()
setuptools.setup(
name="plist-to-html",
version="0.1.0",
author='CodeChecker Team (Ericsson)',
description="Parse and create HTML files from one or more '.plist' "
"result files.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Ericsson/CodeChecker",
keywords=['clang', 'report-converter', 'plist-to-html', 'plist', 'html',
'static-analysis', 'analysis'],
license='LICENSE.txt',
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'plist-to-html = plist_to_html.PlistToHtml:main'
]
},
)