mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-07 19:04:21 +00:00
build-deps-setup.py: use ez_setup here too, for platforms without setuptools
This commit is contained in:
parent
3a8da0c1cc
commit
7bb7d76d9d
@ -1,5 +1,13 @@
|
||||
#! /usr/bin/python
|
||||
|
||||
from ez_setup import use_setuptools
|
||||
import sys
|
||||
if 'cygwin' in sys.platform.lower():
|
||||
min_version='0.6c6'
|
||||
else:
|
||||
min_version='0.6a9'
|
||||
use_setuptools(min_version=min_version, download_base="file:misc/dependencies/")
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
setup(name='tahoe-deps',
|
||||
|
Loading…
x
Reference in New Issue
Block a user