mirror of https://github.com/explosion/spaCy.git
Clean up fabfile
This commit is contained in:
parent
332ce2d758
commit
a3e3df3e33
|
@ -1,21 +1,18 @@
|
|||
from __future__ import print_function
|
||||
# coding: utf-8
|
||||
from __future__ import unicode_literals, print_function
|
||||
|
||||
from fabric.api import local, lcd, env, settings, prefix
|
||||
from os.path import exists as file_exists
|
||||
from fabtools.python import virtualenv
|
||||
from os import path
|
||||
import os
|
||||
import shutil
|
||||
from pathlib import Path
|
||||
from os import path, environ
|
||||
|
||||
|
||||
PWD = path.dirname(__file__)
|
||||
ENV = os.environ["VENV_DIR"] if 'VENV_DIR' in os.environ else '.env'
|
||||
ENV = environ['VENV_DIR'] if 'VENV_DIR' in environ else '.env'
|
||||
VENV_DIR = path.join(PWD, ENV)
|
||||
|
||||
|
||||
def env(lang="python2.7"):
|
||||
if file_exists(VENV_DIR):
|
||||
def env(lang='python2.7'):
|
||||
if path.exists(VENV_DIR):
|
||||
local('rm -rf {env}'.format(env=VENV_DIR))
|
||||
local('virtualenv -p {lang} {env}'.format(lang=lang, env=VENV_DIR))
|
||||
|
||||
|
|
Loading…
Reference in New Issue