Skip to content

Commit

Permalink
Version 1.0.0 for PyPI.
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Apr 16, 2014
1 parent a652ef5 commit e6cd530
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 34 deletions.
29 changes: 0 additions & 29 deletions README.md

This file was deleted.

31 changes: 31 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
SayIt
=====

SayIt is an open source Django application or project to store transcripts
and present them in a modern, searchable format.

An example of SayIt in action is mySociety's website
`sayit.mysociety.org <http://sayit.mysociety.org>`_ which contains a variety
of transcripts, including:

* `The Leveson Inquiry <http://leveson.sayit.mysociety.org>`_
* `The Charles Taylor trial <http://charles-taylor.sayit.mysociety.org>`_
* `The plays of Shakespeare <http://shakespeare.sayit.mysociety.org>`_

SayIt is a `Poplus component <http://poplus.org)>`_
by `mySociety <http://www.mysociety.org/>`_.

Get involved
------------

If you have transcripts you'd like to be included on our website, or have
the technical skills to create such transcripts, please see
http://sayit.mysociety.org/about/community.

For more information on how to use SayIt in your own Django project or as a
standalone site, please see our documentation site at
http://mysociety.github.io/sayit/.

.. image:: https://travis-ci.org/mysociety/sayit.png
:alt: Build Status
:target: https://travis-ci.org/mysociety/sayit
17 changes: 12 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,23 @@ def install_requires():

setup(
name="django-sayit",
version='0.1',
description='A data store for speeches.',
long_description=read_file('README.md'),
version='1.0.0',
description='A data store for speeches and transcripts to make them searchable and pretty.',
long_description=read_file('README.rst'),
author='mySociety',
author_email='matthew@mysociety.org',
author_email='sayit@mysociety.org',
url='https://github.com/mysociety/sayit',
packages=find_packages(),
packages=find_packages(exclude=('example_project', 'example_project.*')),
include_package_data=True,
install_requires=install_requires(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Database :: Front-Ends',
'Topic :: Internet :: WWW/HTTP',
],
)

0 comments on commit e6cd530

Please sign in to comment.