forked from greenape/mknotebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (46 loc) · 1.6 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (46 loc) · 1.6 KB
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Setup configuration for `mktheapidocs`.
"""
import versioneer
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core 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()
__status__ = "Development"
__author__ = "Jonathan Gray"
__maintainer__ = "Jonathan Gray"
__email__ = "jonathan.gray@nanosheep.net"
__copyright__ = "Copyright 2018, 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", "nbconvert-utils", "mkdocs", "jupyter_client"],
platforms=["MacOS X", "Linux"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
],
)