File: setup.py

package info (click to toggle)
mkdocs-bootstrap 1.1%2Bdfsg-0.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 132 kB
  • sloc: sh: 21; python: 21; makefile: 5
file content (23 lines) | stat: -rwxr-xr-x 569 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
23
from setuptools import setup, find_packages

VERSION = '1.1'

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,
    install_requires=['mkdocs>=1.1'],
    python_requires='>=3.5',
    entry_points={
        'mkdocs.themes': [
            'bootstrap = mkdocs_bootstrap',
        ]
    },
    zip_safe=False
)