--- /dev/null
+Broytman Librarian, Copyright (C) 2015 PhiloSoft Design
+Author: Oleg Broytman <phd@phdru.name>
+License: GPL
+
+This hopefully will be a collection of programs to index LibRusEc and
+Flibusta libraries (zipfiles from torrents, actually) and show their
+contents with command-line, GUI and web interfaces.
--- /dev/null
+Convert *.inp(x) to SQL.
+
+
+Library for searching through collections.
+
+
+Command-line scripts for listing authors, books, series, etc.
+
+
+GUI scripts for listing authors, books, series, etc.
+
+
+Web interface for listing authors, books, series, etc.
--- /dev/null
+#!/usr/bin/env python
+
+from imp import load_source
+from os.path import abspath, dirname, join
+
+try:
+ from ez_setup import use_setuptools
+ use_setuptools()
+ from setuptools import setup
+ is_setuptools = True
+except ImportError:
+ from distutils.core import setup
+ is_setuptools = False
+
+versionpath = join(abspath(dirname(__file__)), 'm_librarian', '__version__.py')
+load_source('m_librarian_version', versionpath)
+from m_librarian_version import __version__
+
+setup(name='m_librarian',
+ version=__version__,
+ description='Librarian for LibRusEc/Flibusta libraries',
+ long_description=open('README.txt', 'rtU').read(),
+ author='Oleg Broytman',
+ author_email='phd@phdru.name',
+ url='http://phdru.name/Software/Python/',
+ license='GPL',
+ packages=['m_librarian'],
+ requires=['SQLObject'],
+ )