Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
unverbuggt committed Dec 15, 2022
1 parent cfb41f5 commit dc9bf8a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@
import os
from setuptools import setup, find_packages

VERSION = '0.1'
VERSION = '0.1.1'

def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
with open(file_path) as file:
content = file.read()
return content if content else 'no content read'

setup(
name="mkdocs-risonia-theme",
version=VERSION,
url='https:/unverbuggt/mkdocs-risonia-theme',
description='A simple theme for MkDocs using using the w3.css framework and configurable color schemes',
long_description=read('README.md'),
long_description_content_type='text/markdown',
keywords='mkdocs theme python markdown',
license='MIT',
python_requires='>=3.5',
install_requires=[
'mkdocs',
'beautifulsoup4',
],
description='risonia theme for MkDocs',
author='René Rüthlein',
author_email='[email protected]',
packages=find_packages(),
Expand Down

0 comments on commit dc9bf8a

Please sign in to comment.