mirror of https://github.com/explosion/spaCy.git
Add sdist command
This commit is contained in:
parent
5cbefcba17
commit
252299ca2a
|
@ -32,6 +32,10 @@ def make():
|
|||
local('pip install -r requirements.txt')
|
||||
local('python setup.py build_ext --inplace')
|
||||
|
||||
def sdist():
|
||||
with virtualenv(VENV_DIR):
|
||||
with lcd(path.dirname(__file__)):
|
||||
local('python setup.py sdist')
|
||||
|
||||
def clean():
|
||||
with lcd(path.dirname(__file__)):
|
||||
|
|
Loading…
Reference in New Issue