File tree 6 files changed +46
-539
lines changed
6 files changed +46
-539
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ mock = "*"
17
17
setuptools-scm = " *"
18
18
wheel = " *"
19
19
pre-commit = " *"
20
+ sphinx-palewire-theme = " *"
21
+ myst-parser = " *"
20
22
21
23
[requires ]
22
24
python_version = " 3.11"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- import typing
1
+ """Configure Sphinx configuration."""
2
+ from __future__ import annotations
3
+
4
+ import os
5
+ import sys
6
+ from typing import Any
2
7
from datetime import datetime
3
8
4
- extensions : typing . List [ typing . Any ] = []
5
- templates_path = [ "_templates" ]
6
- source_suffix = ".rst "
9
+ sys . path . insert ( 0 , os . path . abspath ( ".." ))
10
+
11
+ source_suffix = ".md "
7
12
master_doc = "index"
8
13
9
14
project = "django-postgres-copy"
10
15
year = datetime .now ().year
11
- copyright = f"{ year } Ben Welsh "
16
+ copyright = f"{ year } palewire "
12
17
13
18
exclude_patterns = ["_build" ]
14
19
15
- html_theme = "alabaster"
16
- html_sidebars = {
17
- "**" : [
18
- # 'about.html',
19
- # 'navigation.html',
20
- "relations.html" ,
21
- "searchbox.html" ,
22
- "donate.html" ,
23
- ]
24
- }
25
- html_theme_options = {
20
+ html_theme = "palewire"
21
+ html_sidebars : dict [Any , Any ] = {}
22
+ html_theme_options : dict [Any , Any ] = {
26
23
"canonical_url" : f"https://palewi.re/docs/{ project } /" ,
27
- "github_user" : "palewire" ,
28
- "github_repo" : project ,
29
- "donate_url" : "https://github.com/sponsors/palewire" ,
30
- "show_powered_by" : False ,
24
+ "nosidebar" : True ,
31
25
}
32
26
33
- html_static_path = ["_static" ]
34
- html_css_files = [
35
- "css/custom.css" ,
36
- ]
37
-
38
27
pygments_style = "sphinx"
28
+
29
+ extensions = [
30
+ "sphinx.ext.autodoc" ,
31
+ "sphinx.ext.napoleon" ,
32
+ ]
Original file line number Diff line number Diff line change 1
- .. raw :: html
2
-
3
- <nav >
4
- <div class =" row" >
5
- <div class =" sevencol" >
6
- <div class =" shingle" >
7
- <a href =" https://palewi.re/" >
8
- <div rel =" rnews:copyrightedBy rnews:hasSource rnews:providedBy" >
9
- <div about =" http://palewi.re/" typeof =" rnews:Organization" >
10
- <div property =" rnews:name" >palewire</div >
11
- </div >
12
- </div >
13
- </a >
14
- </div >
15
- </div >
16
- <div class =" fivecol last links" >
17
- <ul >
18
- <li >
19
- <a href =" http://palewi.re/posts/" title =" Posts" >
20
- Posts
21
- </a >
22
- </li >
23
- <li >
24
- <a href =" http://palewi.re/work/" title =" Work" >
25
- Work
26
- </a >
27
- </li >
28
- <li >
29
- <a href =" http://palewi.re/talks/" title =" Talks" >
30
- Talks
31
- </a >
32
- </li >
33
- <li >
34
- <a href =" http://palewi.re/who-is-ben-welsh/" title =" Who is Ben Welsh?" >
35
- About
36
- </a >
37
- </li >
38
- </ul >
39
- </div >
40
- </div >
41
- </nav >
42
- <div class =" row topbar" >
43
- <div class =" twelvecol last" ></div >
44
- </div >
45
-
46
1
====================
47
2
django-postgres-copy
48
3
====================
You can’t perform that action at this time.
0 commit comments