remarkbox-theme-chaostheory/setup.py
russell@unturf.com 5722b6c7b0 init chaos theory theme for foxhop.net
Dark void background with dot-grid overlay, electric teal accent,
Space Mono typography. Remarkbox entry point: chaostheory.
2026-04-03 10:54:10 -04:00

31 lines
884 B
Python

# A Remarkbox theme is a python package with the following paths:
#
# templates/<theme_name>-base.j2
# static/theme/<theme_name>/
#
# Register to 'remarkbox.themes' entry_point group to load in Remarkbox.
from setuptools import setup, find_packages
setup(
name='remarkbox_chaostheory',
version='0.1.0',
description='remarkbox chaos theory theme — foxhop.net',
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='fox',
url='https://foxhop.net',
keywords='remarkbox chaostheory theme foxhop',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
entry_points={
'remarkbox.themes': [
'chaostheory = remarkbox_chaostheory',
],
},
)