-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.23 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
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md")) as fp:
long_description = fp.read()
setup(
name="mkjsfiddle",
version="1.0.1",
description="An MkDocs plugin that lets you edit code fences in JSFiddle.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stadiamaps/mkjsfiddle",
author="Stadia Maps",
author_email="[email protected]",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="mkdocs jsfiddle plugin",
license="MIT",
packages=["mkjsfiddle"],
python_requires=">=3.8, <4",
install_requires=["mkdocs"],
extras_require={"test": ["pytest"],},
entry_points={"mkdocs.plugins": ["jsfiddle = mkjsfiddle.plugin:JSFiddlePlugin",],},
)