]> git.phdru.name Git - m_librarian.git/commitdiff
Initial commit - created the project
authorOleg Broytman <phd@phdru.name>
Tue, 15 Dec 2015 20:52:19 +0000 (23:52 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 15 Dec 2015 20:52:19 +0000 (23:52 +0300)
.gitattributes [new file with mode: 0644]
.gitignore [new file with mode: 0644]
ChangeLog [new file with mode: 0644]
MANIFEST.in [new file with mode: 0644]
README.txt [new file with mode: 0644]
TODO [new file with mode: 0644]
m_librarian/__init__.py [new file with mode: 0644]
m_librarian/__version__.py [new file with mode: 0644]
setup.py [new file with mode: 0755]
update [new file with mode: 0755]

diff --git a/.gitattributes b/.gitattributes
new file mode 100644 (file)
index 0000000..e4504cf
--- /dev/null
@@ -0,0 +1 @@
+.git* export-ignore
diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..539da74
--- /dev/null
@@ -0,0 +1 @@
+*.py[co]
diff --git a/ChangeLog b/ChangeLog
new file mode 100644 (file)
index 0000000..a84015e
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1 @@
+Version 0.0.1 (2015-12-15)
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644 (file)
index 0000000..bb219c8
--- /dev/null
@@ -0,0 +1,2 @@
+include MANIFEST.in TODO
+recursive-include m_librarian
diff --git a/README.txt b/README.txt
new file mode 100644 (file)
index 0000000..734a913
--- /dev/null
@@ -0,0 +1,7 @@
+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.
diff --git a/TODO b/TODO
new file mode 100644 (file)
index 0000000..9e3c236
--- /dev/null
+++ b/TODO
@@ -0,0 +1,13 @@
+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.
diff --git a/m_librarian/__init__.py b/m_librarian/__init__.py
new file mode 100644 (file)
index 0000000..792d600
--- /dev/null
@@ -0,0 +1 @@
+#
diff --git a/m_librarian/__version__.py b/m_librarian/__version__.py
new file mode 100644 (file)
index 0000000..b8023d8
--- /dev/null
@@ -0,0 +1 @@
+__version__ = '0.0.1'
diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
index 0000000..d1a3919
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,29 @@
+#!/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'],
+      )
diff --git a/update b/update
new file mode 100755 (executable)
index 0000000..690ecaa
--- /dev/null
+++ b/update
@@ -0,0 +1,2 @@
+#! /bin/sh
+exec "$HOME"/admin/prog/git-scripts/update