Skip to content

Commit 134f6a2

Browse files
authored
troubleshoot theme install (#5)
* add __init__.py files to css and partials folders * move to src folder * bump version
1 parent 1b59b1d commit 134f6a2

21 files changed

+9
-9
lines changed

MANIFEST.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
recursive-include terminal *.ico *.js *.css *.png *.html *.eot *.svg *.ttf *.woff *.yml
2-
recursive-include terminal *.py
3-
recursive-include terminal/legal *.md
1+
recursive-include src *.ico *.js *.css *.png *.html *.eot *.svg *.ttf *.woff *.yml
2+
recursive-include src *.py
3+
recursive-include src/legal *.md
44
include LICENSE
55
include README.md
66
recursive-exclude * __pycache__

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "mkdocs-terminal"
33

44
description = "Terminal.css theme for MkDocs"
55

6-
version = "0.2.0"
6+
version = "0.2.1"
77

88
authors = [
99
{ name = "Natan Organick" }
@@ -41,9 +41,9 @@ requires = ["setuptools>=43.0.0", "wheel"]
4141
build-backend = "setuptools.build_meta"
4242

4343
[tool.setuptools.packages.find]
44-
where = [ "terminal"
45-
, "terminal/css"
46-
, "terminal/partials"
47-
, "terminal/js"
48-
, "terminal/legal" ]
44+
where = [ "src"
45+
, "src/css"
46+
, "src/partials"
47+
, "src/js"
48+
, "src/legal" ]
4949
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
File renamed without changes.
File renamed without changes.

src/css/__init__.py

Whitespace-only changes.
File renamed without changes.
File renamed without changes.

src/legal/__init__.py

Whitespace-only changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)