Milosz Wasilewski | 543a640 | 2020-03-05 15:19:58 +0000 | [diff] [blame] | 1 | from setuptools import setup, find_packages |
| 2 | |
| 3 | |
| 4 | setup( |
Benjamin Copeland | 15d743e | 2021-02-22 08:35:10 +0000 | [diff] [blame] | 5 | name="mkdocs-test-definitions-plugin", |
Milosz Wasilewski | 5e28c8d | 2024-02-06 12:05:45 +0000 | [diff] [blame] | 6 | version="1.5", |
Benjamin Copeland | 15d743e | 2021-02-22 08:35:10 +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=["mkdocs>=1.1", "tags-macros-plugin"], |
Milosz Wasilewski | 543a640 | 2020-03-05 15:19:58 +0000 | [diff] [blame] | 16 | classifiers=[ |
Benjamin Copeland | 15d743e | 2021-02-22 08:35:10 +0000 | [diff] [blame] | 17 | "Development Status :: 5 - Production/Stable", |
| 18 | "Intended Audience :: Developers", |
| 19 | "Intended Audience :: Information Technology", |
| 20 | "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", |
| 21 | "Programming Language :: Python", |
| 22 | "Programming Language :: Python :: 3 :: Only", |
| 23 | "Programming Language :: Python :: 3.5", |
| 24 | "Programming Language :: Python :: 3.6", |
| 25 | "Programming Language :: Python :: 3.7", |
Milosz Wasilewski | 543a640 | 2020-03-05 15:19:58 +0000 | [diff] [blame] | 26 | ], |
| 27 | packages=find_packages(), |
| 28 | entry_points={ |
Benjamin Copeland | 15d743e | 2021-02-22 08:35:10 +0000 | [diff] [blame] | 29 | "mkdocs.plugins": [ |
| 30 | "linaro-test-definitions = testdefinitionsmkdocs:LinaroTestDefinitionsMkDocsPlugin" |
Milosz Wasilewski | 543a640 | 2020-03-05 15:19:58 +0000 | [diff] [blame] | 31 | ] |
Benjamin Copeland | 15d743e | 2021-02-22 08:35:10 +0000 | [diff] [blame] | 32 | }, |
Milosz Wasilewski | 543a640 | 2020-03-05 15:19:58 +0000 | [diff] [blame] | 33 | ) |