-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
66 lines (58 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Setup configuration for `mktheapidocs`.
"""
from os import path
import versioneer
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
__status__ = "Development"
__author__ = "Jonathan Gray"
__maintainer__ = "Jonathan Gray"
__email__ = "[email protected]"
__copyright__ = "Copyright 2020, Jonathan Gray"
setup(
name="mknotebooks",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
entry_points={"mkdocs.plugins": ["mknotebooks = mknotebooks.plugin:Plugin"]},
description="Plugin for mkdocs to generate markdown documents from jupyter notebooks.",
long_description=long_description,
long_description_content_type="text/markdown",
author=__author__,
author_email=__email__,
url="https://github.com/greenape/mknotebooks",
license="MIT",
keywords="mkdocs documentation markdown",
packages=["mknotebooks"],
include_package_data=True,
install_requires=[
"nbconvert>=6.0.0",
"mkdocs>=1.5.0",
"markdown>=3.3.3",
"jupyter_client",
"gitpython",
],
platforms=["MacOS X", "Linux"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
],
)