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