-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
executable file
·52 lines (49 loc) · 1.5 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
#! /usr/bin/env python3
# Core
import sys
from setuptools import setup
# The importer relies heavily on glob recursive search capability.
# This was only introduced in Python 3.5:
# https://docs.python.org/3.6/whatsnew/3.5.html#glob
assert sys.version_info >= (
3,
5,
), "The documentation importer requires Python 3.5 or newer"
setup(
name="ubuntudesign.documentation-builder",
version="1.7.0",
author="Canonical webteam",
author_email="[email protected]",
url="https://github.com/ubuntudesign/documentation-builder",
packages=[
"ubuntudesign.documentation_builder",
],
package_data={"ubuntudesign.documentation_builder": ["resources/*"]},
description=(
"A command-line tool for building documentation from repositories "
"into HTML files. Initially based on "
"https://github.com/juju/docs/blob/master/tools/mdbuild.py."
),
long_description=open("README.rst").read(),
install_requires=[
"GitPython==3.1.20",
"Jinja2==3.1.4 ",
"markdown==2.6.11",
"mdx-anchors-away==1.0.1",
"mdx-foldouts==1.0.0",
"python-frontmatter==0.2.1",
"pygments==2.4.0",
"PyYAML==6.0",
"beautifulsoup4==4.11.1",
"markdown_urlize==0.2.0",
"markupsafe==2.0.1",
],
setup_requires=["pytest-runner"],
tests_require=[
"mock==2.0.0",
"nose==1.3.7",
"pytest==3.0.2",
"pytest-cov==2.4.0",
],
scripts=["documentation-builder"],
)