forked from grigoryvp/parabridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Naming launcher script and module with same way is not a good idea.
Module renamed into "parabridge_core" - now all works fine.
- Loading branch information
Showing
6 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|