Imported from SVN by Bitbucket

This commit is contained in:
2015-03-31 20:01:45 +00:00
committed by bitbucket
commit 28581309ce
47 changed files with 1087 additions and 0 deletions

37
setup.py Executable file
View File

@@ -0,0 +1,37 @@
from setuptools import setup, find_packages
import os
version = '4.1.6a'
setup(name='caotek.tcshome_theme',
version=version,
description="Customized theme for tcshome.org site",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='',
author='ctphuoc',
author_email='',
url='http://svn.plone.org/svn/collective/',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['caotek'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
paster_plugins=["ZopeSkel"],
)