File: setup.py

package info (click to toggle)
mkdocs-bootstrap 0.2.0%2Bdfsg-0.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 140 kB
  • sloc: python: 19; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 527 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages

VERSION = '0.2.0'


setup(
    name="mkdocs-bootstrap",
    version=VERSION,
    url='http://mkdocs.github.io/mkdocs-bootstrap/',
    license='BSD',
    description='Bootstrap theme for MkDocs',
    author='Dougal Matthews',
    author_email='dougal@dougalmatthews.com',
    packages=find_packages(),
    include_package_data=True,
    entry_points={
        'mkdocs.themes': [
            'bootstrap = mkdocs_bootstrap',
        ]
    },
    zip_safe=False
)