# A Remarkbox theme is a python package with the following paths: # # templates/-base.j2 # static/theme// # # 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', ], }, )