Skip to content

Commit

Permalink
create and publish the docuemntation pages
Browse files Browse the repository at this point in the history
See #31

@edwardtheharris - [email protected]

Xander Harris

Changelog: changed
  • Loading branch information
edwardtheharris committed Mar 13, 2024
1 parent 9e4d75a commit 3066997
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 11 deletions.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ loguru = "*"
python-dotenv = "*"
requests = "*"
tox = "*"
setuptools = "*"

[docs]
myst-parser = "*"
Expand Down
11 changes: 10 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions s.md

This file was deleted.

12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
#!/usr/bin/env python3
"""Setup tools configuration."""

import pathlib
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
def get_version():
"""Get the project's version."""
vpath = pathlib.Path('version')
with vpath.open('r', encoding='utf-8') as v_fh:
version = v_fh.read()
return version

with pathlib.Path('readme.md').open("r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
Expand All @@ -26,5 +34,5 @@
"Bug Tracker": "https://github.com/edwardtheharris/panegyric/issues",
},
url="https://github.com/edwardtheharris/panegyric",
version='v0.1.0',
version=get_version(),
)
1 change: 1 addition & 0 deletions version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.2

0 comments on commit 3066997

Please sign in to comment.