-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 960 Bytes
/
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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pico8-mkdocs-plugin',
version='1.0.0',
packages=['pico8'],
url='https://github.com/fmaida/pico8-mkdocs-plugin',
license='MIT',
author='Francesco Maida',
author_email='[email protected]',
description='This plugin allows to embed a Pico-8 web player in a mkdocs generated page.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['mkdocs'],
# The following rows are important to register your plugin.
# The format is "(plugin name) = (plugin folder):(class name)"
# Without them, mkdocs will not be able to recognize it.
entry_points={
'mkdocs.plugins': [
'pico-8 = pico8:Pico8',
]
},
)