fix: Correct SyntaxError in setup.py

master
Robbert Schep 2025-07-07 14:39:20 +02:00
parent 632e29c73b
commit dfeec9faa1
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,3 @@
# setup.py
import os
from setuptools import setup
from setuptools.command.install import install
@ -14,8 +13,7 @@ setup(
name='smartup-zero-timeline',
version='1.0.0',
description='A wrapper to build and serve the MkDocs site on Clever Cloud.',
cmdclass={
cmdclass={
'mkdocs': BuildMkDocsCommand,
}
}
)