2007-09-14 19:23:55 -07:00
|
|
|
#! /usr/bin/python
|
|
|
|
|
2007-09-15 14:04:57 -07:00
|
|
|
# N.B.: this expects to run from the top of the source tree
|
|
|
|
|
2007-09-15 15:07:21 -07:00
|
|
|
import sys
|
2007-09-15 02:31:40 -07:00
|
|
|
from ez_setup import use_setuptools
|
|
|
|
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/")
|
|
|
|
|
2007-09-14 19:23:55 -07:00
|
|
|
from setuptools import setup
|
|
|
|
|
2007-09-15 15:05:35 -07:00
|
|
|
from calcdeps import install_requires, dependency_links
|
2007-09-15 14:04:57 -07:00
|
|
|
|
2007-09-14 19:23:55 -07:00
|
|
|
setup(name='tahoe-deps',
|
|
|
|
version="1",
|
2007-09-15 15:05:35 -07:00
|
|
|
install_requires=install_requires,
|
2007-09-15 14:04:57 -07:00
|
|
|
dependency_links=dependency_links,
|
2007-09-14 19:23:55 -07:00
|
|
|
)
|