Milosz Wasilewski | 543a640 | 2020-03-05 15:19:58 +0000 | [diff] [blame] | 1 | from setuptools import setup, find_packages |
| 2 | |
| 3 | |
| 4 | setup( |
| 5 | name='mkdocs-test-definitions-plugin', |
Milosz Wasilewski | 8883dc3 | 2020-03-27 12:10:22 +0000 | [diff] [blame] | 6 | version='1.2', |
Milosz Wasilewski | 543a640 | 2020-03-05 15:19:58 +0000 | [diff] [blame] | 7 | 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 Wasilewski | 8883dc3 | 2020-03-27 12:10:22 +0000 | [diff] [blame] | 16 | 'mkdocs>=1.1', |
| 17 | 'tags-macros-plugin' |
Milosz Wasilewski | 543a640 | 2020-03-05 15:19:58 +0000 | [diff] [blame] | 18 | ], |
| 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 | ) |