Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
flowlauncher/_version.py export-subst
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ python:

install:
- pip install -r requirements-dev.txt
- pip install -r requirements.txt

before_install:
- sudo apt-get update
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ include README.md
include LICENSE

include assets/*.png
include versioneer.py
include flowlauncher/_version.py
8 changes: 5 additions & 3 deletions flowlauncher/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# -*- coding: utf-8 -*-

from .FlowLauncher import FlowLauncher
from .FlowLauncherAPI import FlowLauncherAPI
from ._version import get_versions
from .FlowLauncher import FlowLauncher # noqa
from .FlowLauncherAPI import FlowLauncherAPI # noqa

__version__ = get_versions()["version"]
del get_versions

__version__ = '0.1.1'
__license__ = 'MIT'
__short_description__ = 'Flow Launcher supports Python by JsonRPC.'
Loading