Skip to content

Commit

Permalink
Merge pull request #12 from radtomas/initial-version
Browse files Browse the repository at this point in the history
Initial version
  • Loading branch information
mateuszdargacz committed Mar 23, 2018
2 parents 066dcb0 + 0bd2d7c commit 4af8ce8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1 +1,2 @@
include requirements.txt
recursive-include sufler *
3 changes: 2 additions & 1 deletion sufler/backends/fish/fish.py
@@ -1,8 +1,9 @@
#!/usr/bin/env python3

from sufler.base import completion
import sys

from sufler.base import completion


def fish_parse():
list_of_arguments = [sys.argv[0]]
Expand Down
2 changes: 1 addition & 1 deletion sufler/base.py
Expand Up @@ -2,9 +2,9 @@

import logging
import os

import re
import subprocess

import yaml

logger = logging.getLogger(__file__)
Expand Down
9 changes: 4 additions & 5 deletions sufler/cli.py
@@ -1,12 +1,11 @@
import os

import yaml
import click

import shutil
import subprocess
import zipfile

import click
import requests
import subprocess
import yaml

from sufler.base import SUFLER_BASE_PATH

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -7,7 +7,7 @@ setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/sufler

deps =
-rrequirements.txt
-requirements.txt

commands =
py.test -vv test.py {posargs:--cov=backend --cov=cli --cov=base --cov-report=term-missing}
Expand Down

0 comments on commit 4af8ce8

Please sign in to comment.