Skip to content

Commit

Permalink
tune manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
gotcha committed Sep 5, 2013
1 parent 792d2b5 commit c2e29d0
Show file tree
Hide file tree
Showing 897 changed files with 17 additions and 140,040 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ dist
*.tmp*
var
sys
src/collective/ckeditor/browser/ckeditor
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[check-manifest]
ignore = buildout.cfg
bootstrap.py
.cache
.cache/*
src/collective/ckeditor/_src
src/collective/ckeditor/_src/*
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

version = '3.6.12.dev0'

browser_ckeditor_dir = os.path.join(
'src', 'collective', 'ckeditor', 'browser', 'ckeditor')
if not os.path.exists(browser_ckeditor_dir):
raise ValueError(
"{0} directory should exist and be populated. "
"Use bin/copy_ckeditor_code script installed by buildout. "
"Or use zest.releaser fullrelease. "
"Check README for more details.".format(browser_ckeditor_dir)
)

setup(name='collective.ckeditor',
version=version,
description="CKEditor for Plone",
Expand Down Expand Up @@ -42,10 +52,10 @@
# -*- Extra requirements: -*-
],
packages = find_packages('src'),
package_dir = {'': 'src'},
package_dir = {'': 'src'},
extras_require={
'test': ['plone.app.testing', 'Products.PloneTestCase', ],
},
},
entry_points={
'console_scripts': [
'copy_ckeditor_code = collective.ckeditor.utils.base2zope:main',
Expand Down
1,598 changes: 0 additions & 1,598 deletions src/collective/ckeditor/browser/ckeditor/CHANGES.html

This file was deleted.

92 changes: 0 additions & 92 deletions src/collective/ckeditor/browser/ckeditor/INSTALL.html

This file was deleted.

Loading

0 comments on commit c2e29d0

Please sign in to comment.