mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-24 07:06:41 +00:00
build-deps-setup.py: provide dependency_links too
This commit is contained in:
parent
1f383b624b
commit
5cedf89a67
@ -1,7 +1,9 @@
|
||||
#! /usr/bin/python
|
||||
|
||||
# N.B.: this expects to run from the top of the source tree
|
||||
|
||||
import os, sys
|
||||
from ez_setup import use_setuptools
|
||||
import sys
|
||||
if 'cygwin' in sys.platform.lower():
|
||||
min_version='0.6c6'
|
||||
else:
|
||||
@ -10,11 +12,18 @@ use_setuptools(min_version=min_version, download_base="file:misc/dependencies/")
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
dependency_tarballs=[ os.path.join("misc", "dependencies", fn)
|
||||
for fn in os.listdir(os.path.join("misc", "dependencies"))
|
||||
if fn.endswith(".tar.gz") ]
|
||||
dependency_links=["http://allmydata.org/trac/tahoe/wiki/Dependencies"] + dependency_tarballs
|
||||
|
||||
setup(name='tahoe-deps',
|
||||
version="1",
|
||||
install_requires=["zfec >= 1.0.3",
|
||||
"foolscap >= 0.1.6", "simplejson >= 1.4",
|
||||
"foolscap >= 0.1.6",
|
||||
"simplejson >= 1.4",
|
||||
#"nevow", # we need nevow, but it doesn't seem to be
|
||||
# installable by easy_install
|
||||
],
|
||||
dependency_links=dependency_links,
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user