new file: remarkbox_westworld/__init__.py new file: remarkbox_westworld/__init__.pyc new file: remarkbox_westworld/static/theme/css/westworld.css new file: remarkbox_westworld/static/theme/img/westworld2-bg.jpg new file: remarkbox_westworld/static/theme/img/westworld2-bg2.png new file: remarkbox_westworld/templates/base.j2 new file: setup.py
22 lines
620 B
Python
22 lines
620 B
Python
import os
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name='remarkbox_westworld',
|
|
version='0.0.1',
|
|
description='remarkbox westworld theme',
|
|
classifiers=[
|
|
"Programming Language :: Python",
|
|
"Framework :: Pyramid",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
|
],
|
|
author='Russell Ballestrini',
|
|
author_email='russell@ballestrini.net',
|
|
url='http://russell.ballestrini.net',
|
|
keywords='remarkbox theme',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
)
|
|
|