Skip to content

Commit

Permalink
pyparadox dependency is moved into package description.
Browse files Browse the repository at this point in the history
  • Loading branch information
grigoryvp committed Aug 23, 2012
1 parent 01ede53 commit 73f185f
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .hgsub

This file was deleted.

1 change: 0 additions & 1 deletion .hgsubstate

This file was deleted.

6 changes: 4 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
pyparadox
=========

A simple python script that can read a paradox database into memory.
A simple python daemon that can dynamically sync paradox database with
SQLite database.

Why?
====

No such script exist. I use it to convert some old paradox table into SQLite.
In order to work with legacy apps that only supports paradox databases,
and reading paradox databases is very slow compared to SQLite.

23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from distutils.core import setup

setup(
name="parabridge",
version='0.1.0',
description="A simple python daemon that can dynamically sync paradox database with SQLite database."
author='Grigory Petrov',
author_email='[email protected]',
url='http://bitbucket.org/eyeofhell/parabridge',
packages = [ 'parabridge' ],
install_requires = [ 'pyparadox>=0.1.0' ]
classifiers=[
'Development Status :: 1 - Prototype',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: GPLv3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities' ])

0 comments on commit 73f185f

Please sign in to comment.