mirror of
https://github.com/vale981/ablog
synced 2025-03-04 16:51:39 -05:00
Added content to README.rst, and detailed info in setup file.
This commit is contained in:
parent
2b6a9a2fcc
commit
c8cf0fdeed
3 changed files with 19 additions and 11 deletions
10
README.rst
10
README.rst
|
@ -2,4 +2,12 @@ ABlog for Sphinx
|
|||
================
|
||||
|
||||
ABlog is a Sphinx extension that can convert any documentation or personal
|
||||
website project into a full-fledged blog with feeds.
|
||||
website project into a full-fledged blog with:
|
||||
|
||||
* `Atom feeds <http://ablog.readthedocs.org/blog/atom.xml>`_
|
||||
* :ref:`archives`
|
||||
* :ref:`sidebars`
|
||||
* :ref:`disqus-integration`
|
||||
* :ref:`fa` integration
|
||||
|
||||
Looking for an example? See ABlog documentation at http://ablog.readthedocs.org.
|
|
@ -7,11 +7,11 @@ It's a Blog... It's a Documentation... It's Sphinx with ABlog
|
|||
ABlog is a Sphinx extension that can convert any documentation or personal
|
||||
website project into a full-fledged blog with:
|
||||
|
||||
* `Atom feeds <http://ablog.readthedocs.org/blog/atom.xml>`_
|
||||
* :ref:`archives`
|
||||
* :ref:`sidebars`
|
||||
* :ref:`disqus-integration`
|
||||
* :ref:`fa` integration
|
||||
* `Atom feeds <http://ablog.readthedocs.org/blog/atom.xml>`_
|
||||
* :ref:`archives`
|
||||
* :ref:`sidebars`
|
||||
* :ref:`disqus-integration`
|
||||
* :ref:`fa` integration
|
||||
|
||||
Looking for an example? Just browse this documentation ;)
|
||||
|
||||
|
|
10
setup.py
10
setup.py
|
@ -6,8 +6,8 @@ with open('ablog/__init__.py') as inp:
|
|||
if (line.startswith('__version__')):
|
||||
exec(line.strip())
|
||||
break
|
||||
#with open('README.rst') as inp:
|
||||
# long_description = inp.read()
|
||||
with open('README.rst') as inp:
|
||||
long_description = inp.read()
|
||||
|
||||
|
||||
setup(
|
||||
|
@ -16,15 +16,15 @@ setup(
|
|||
author='Ahmet Bakan',
|
||||
author_email='lordnapi@gmail.com',
|
||||
description='ABlog for blogging with Sphinx',
|
||||
#long_description=long_description,
|
||||
long_description=long_description,
|
||||
url='http://github.com/abakan/ablog',
|
||||
packages=['ablog'],
|
||||
package_dir={'ablog': 'ablog'},
|
||||
package_data={'ablog': ['templates/*.html']},
|
||||
license='MIT License',
|
||||
#keywords=('abstract syntax tree transformer, IPython magic'),
|
||||
keywords=('Sphinx, extension, blogging, atom feeds'),
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Development Status :: 3 - Alpha',
|
||||
'Topic :: Software Development :: Documentation',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: MacOS',
|
||||
|
|
Loading…
Add table
Reference in a new issue