blob: e5094d27823743d5116e9f9af619e0aaa5ba6ca5 [file] [log] [blame]
Milosz Wasilewski543a6402020-03-05 15:19:58 +00001from setuptools import setup, find_packages
2
3
4setup(
5 name='mkdocs-test-definitions-plugin',
Milosz Wasilewski8883dc32020-03-27 12:10:22 +00006 version='1.2',
Milosz Wasilewski543a6402020-03-05 15:19:58 +00007 description='An MkDocs plugin that converts LAVA test definitions to documentation',
8 long_description='',
9 keywords='mkdocs python markdown wiki',
10 url='https://github.com/linaro/test-definitions',
11 author='Milosz Wasilewski',
12 author_email='milosz.wasilewski@linaro.org',
13 license='GPL',
14 python_requires='>=3.5',
15 install_requires=[
Milosz Wasilewski8883dc32020-03-27 12:10:22 +000016 'mkdocs>=1.1',
17 'tags-macros-plugin'
Milosz Wasilewski543a6402020-03-05 15:19:58 +000018 ],
19 classifiers=[
20 'Development Status :: 5 - Production/Stable',
21 'Intended Audience :: Developers',
22 'Intended Audience :: Information Technology',
23 'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
24 'Programming Language :: Python',
25 'Programming Language :: Python :: 3 :: Only',
26 'Programming Language :: Python :: 3.5',
27 'Programming Language :: Python :: 3.6',
28 'Programming Language :: Python :: 3.7'
29 ],
30 packages=find_packages(),
31 entry_points={
32 'mkdocs.plugins': [
33 'linaro-test-definitions = testdefinitionsmkdocs:LinaroTestDefinitionsMkDocsPlugin'
34 ]
35 }
36)