Skip to content

Commit

Permalink
Naming launcher script and module with same way is not a good idea.
Browse files Browse the repository at this point in the history
Module renamed into "parabridge_core" - now all works fine.
  • Loading branch information
grigoryvp committed Aug 23, 2012
1 parent 4b5d296 commit b31bd8f
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions parabridge.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# coding:utf-8 vi:et:ts=2

import parabridge
import parabridge_core

parabridge.app()
parabridge_core.app()

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

setup(
name="parabridge",
version='0.1.0',
version='0.1.2',
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',
scripts = [ 'common.py', 'parabridge.py', 'parabridge_daemon.py',
'settings.py' ],
scripts = [ 'parabridge.py' ],
packages = [ 'parabridge_core' ],
requires = [ 'pyparadox (>=0.1.0)' ],
classifiers=[
'Development Status :: 1 - Prototype',
Expand Down

0 comments on commit b31bd8f

Please sign in to comment.