-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.22 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
37
38
39
40
41
from setuptools import setup, find_packages
# Load README contents
with open("README.md", encoding = "utf-8") as data:
long_description = data.read()
setup(
name="mkdocs-swangallery",
version='0.0.6',
url='https://github.com/swan-cern/mkdocs-swangallery',
license='BSD',
description='Plugin for MkDocs to genereate a SWAN Gallery',
long_description = long_description,
long_description_content_type = "text/markdown",
author='Diogo Castro',
author_email='diogo.castro@cern.ch',
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup :: HTML"
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'mkdocs',
'nbconvert>=7',
'ipython_genutils',
'nbformat',
'bs4'
],
entry_points={
'mkdocs.plugins': [
'swangallery = mkdocs_swangallery:SwanGallery',
]
},
zip_safe=False
)