forked from priv-kweihmann/oelint-adv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.46 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
import setuptools
from oelint_adv.version import __version__
with open('README.md') as f:
_long_description = f.read()
requirements = []
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name='oelint_adv',
version=__version__,
author='Konrad Weihmann',
author_email='kweihmann@outlook.com',
description='Advanced bitbake-recipe linter',
long_description=_long_description,
long_description_content_type='text/markdown',
url='https://github.com/priv-kweihmann/oelint-adv',
packages=setuptools.find_packages(exclude=('tests',)),
entry_points={
'console_scripts': [
'oelint-adv = oelint_adv.__main__:main',
],
},
install_requires=requirements,
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.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Quality Assurance',
],
python_requires='>=3.8',
)