Skip to content

Commit

Permalink
Rework documentation files
Browse files Browse the repository at this point in the history
  • Loading branch information
hvelarde committed Nov 24, 2015
1 parent 1f040f8 commit d3493e0
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 40 deletions.
File renamed without changes.
File renamed without changes.
18 changes: 18 additions & 0 deletions README.rst
Expand Up @@ -33,6 +33,24 @@ site in the future.
This package helps you make your Plone site comply with these `technical
requirements`_.

Installation
============

To enable this product in a buildout-based installation:

1. Edit your buildout.cfg and add ``collective.googlenews`` to the list of eggs to install::

[buildout]
...
eggs =
collective.googlenews

After updating the configuration you need to run ''bin/buildout'', which will take care of updating your system.

Go to the 'Site Setup' page in a Plone site and click on the 'Add-ons' link.

Check the box next to ``collective.googlenews`` and click the 'Activate' button.

Article URLs
============

Expand Down
33 changes: 0 additions & 33 deletions docs/INSTALL.txt

This file was deleted.

15 changes: 8 additions & 7 deletions setup.py
@@ -1,11 +1,13 @@
from setuptools import setup, find_packages
import os
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup

version = '2.0a1.dev0'
long_description = open("README.rst").read() + "\n" + \
open(os.path.join("docs", "INSTALL.txt")).read() + "\n" + \
open(os.path.join("docs", "CREDITS.txt")).read() + "\n" + \
open(os.path.join("docs", "HISTORY.txt")).read()
long_description = (
open('README.rst').read() + '\n' +
open('CONTRIBUTORS.rst').read() + '\n' +
open('CHANGES.rst').read()
)

setup(name='collective.googlenews',
version=version,
Expand All @@ -20,7 +22,6 @@
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Office/Business :: News/Diary",
Expand Down

0 comments on commit d3493e0

Please sign in to comment.