forked from priv-kweihmann/oelint-adv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.52 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
import setuptools
import subprocess
_long_description = "See https://github.com/priv-kweihmann/oelint-adv for documentation"
_long_description_content_type = "text/plain"
try:
_long_description = subprocess.check_output(["pandoc", "--from", "markdown", "--to", "rst", "README.md"]).decode("utf-8")
_long_description_content_type = "text/x-rst"
except (subprocess.CalledProcessError, Exception):
pass
setuptools.setup(
name="oelint_adv",
version="1.7.0",
author="Konrad Weihmann",
author_email="kweihmann@outlook.com",
description="Advanced bitbake-recipe linter",
long_description=_long_description,
long_description_content_type=_long_description_content_type,
url="https://github.com/priv-kweihmann/oelint-adv",
packages=setuptools.find_packages(),
scripts=['bin/oelint-adv'],
install_requires=[
'urllib3>=1.21.1',
'anytree>=2.7.0'
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
],
)