Dark void background with dot-grid overlay, electric teal accent, Space Mono typography. Remarkbox entry point: chaostheory.
31 lines
884 B
Python
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',
|
|
],
|
|
},
|
|
)
|