forked from xbmc/addon-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 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
import os
import setuptools
with open('requirements.txt') as f:
requirements = f.read().splitlines()
_ROOT = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_ROOT, 'README.md')) as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name="kodi-addon-checker",
version="0.0.10",
description="Check kodi addons or whole kodi repositories for errors and best practices.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Team Kodi",
url="https://github.com/xbmc/addon-check",
download_url="https://github.com/xbmc/addon-check/archive/master.zip",
packages=setuptools.find_packages(exclude=['script.test', 'tests*']),
package_data={'kodi_addon_checker': ['xml_schema/*.xsd']},
install_requires=requirements,
setup_requires=['setuptools>=38.6.0'],
entry_points={'console_scripts': [
'kodi-addon-checker = kodi_addon_checker.__main__:main']},
keywords='kodi add-on add-on_checker',
classifiers=[
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Utilities"
] + [('Programming Language :: Python :: %s' % x) for x in '3 3.4 3.5 3.6 3.7'.split()]
)