This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
pfwbged.theme/setup.py

39 lines
1.1 KiB
Python

from setuptools import setup, find_packages
import os
version = '1.0'
setup(name='pfwbged.theme',
version=version,
description="Diazo Theme for PFWB GED",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='',
author='',
author_email='',
url='http://svn.plone.org/svn/collective/',
license='GPL',
packages=find_packages('src'),
package_dir = {'': 'src'},
namespace_packages=['pfwbged'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'z3c.jbot',
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)