Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
Break out README.
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Mar 13, 2013
1 parent d34ac7e commit 5438d9d
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 39 deletions.
3 changes: 0 additions & 3 deletions README

This file was deleted.

39 changes: 39 additions & 0 deletions README.rst
@@ -0,0 +1,39 @@
Synoptic is "GMail for your notes". It gives you an efficient and friendly
interface that makes it possible to keep and categorize a *large* number of
small-ish notes and tidbits of information.

The following features set it apart:

* **Fully versioned.** Never deletes *anything*, *ever*. If you want to go back
to a previous version of something, just drag that slider up there in the
top-left corner.

* **Super-simple Navigation.** Adaptive tag clouds,
support for the forward/back button on your browser,
query links, support for browser bookmarks. All to make sure
you can find that note when you need it.

* **Powerful searching.** Synoptic is meant to keep *large*
note collections manageable and accessible. You can search for items
based on tags, their creation time, or even search through their *full text*.
Plus arbitrary logical combinations of them, using the
logical operatos and, or, and not.

* **Easy Markup.** Synoptic uses
Markdown to allow you to type formatted notes easily and
quickly. Plus, there are a few extensions to facilitate
typing math.

* **Advanced Features.** A lot of refinement work has gone into
making Synoptic work as seamlessly as possible. You may never notice
many of these refinements, because they're meant to make stuff work like
it's supposed to.

Synoptic is licensed under the terms of the MIT license.

Acknowledgments
---------------

Busy indicator from:
http://www.sanbaldo.com/wordpress/1/ajax_gif/
under CC-BY.
38 changes: 2 additions & 36 deletions setup.py
@@ -1,47 +1,13 @@
#!/usr/bin/env python
# -*- coding: latin1 -*-
# -*- coding: utf-8 -*-

def main():
from setuptools import setup
import glob
import os
import os.path

setup(name="synoptic",
version="2011.1",
description="An AJAXy notes manager",
long_description="""
Synoptic is "GMail for your notes". It gives you an efficient and friendly
interface that makes it possible to keep and categorize a *large* number of
small-ish notes and tidbits of information.
The following features set it apart:
* **Fully versioned.** Never deletes *anything*, *ever*. If you want to go back
to a previous version of something, just drag that slider up there in the
top-left corner.
* **Super-simple Navigation.** Adaptive tag clouds,
support for the forward/back button on your browser,
query links, support for browser bookmarks. All to make sure
you can find that note when you need it.
* **Powerful searching.** Synoptic is meant to keep *large*
note collections manageable and accessible. You can search for items
based on tags, their creation time, or even search through their *full text*.
Plus arbitrary logical combinations of them, using the
logical operatos and, or, and not.
* **Easy Markup.** Synoptic uses
Markdown to allow you to type formatted notes easily and
quickly. Plus, there are a few extensions to facilitate
typing math.
* **Advanced Features.** A lot of refinement work has gone into
making Synoptic work as seamlessly as possible. You may never notice
many of these refinements, because they're meant to make stuff work like
it's supposed to.
""",
long_description=open("README.rst", "rt").read(),
author=u"Andreas Kloeckner",
author_email="inform@tiker.net",
license = "MIT",
Expand Down

0 comments on commit 5438d9d

Please sign in to comment.