source: trunk/setup.cfg @ 456955e

Last change on this file since 456955e was c16dc3a, checked in by david-sarah <david-sarah@…>, at 2012-03-13T20:30:41Z

Update find_links URLs in setup.cfg to https://tahoe-lafs.org. This is not just a doc change; look out for compatibility problems.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1[easy_install]
2# Tahoe-LAFS actually does work at least as well as any package works when
3# zipped, but zipping eggs causes various problems
4# (http://bugs.python.org/setuptools/issue33 ), and generally makes it harder
5# for people to get at the source code, and doesn't actually provide any
6# benefits that I am aware of.
7zip_ok=False
8
9# Tahoe-LAFS depends upon several libraries (foolscap, twisted, pycryptopp,
10# zfec, and others). Left to its own devices, setuptools will look on PyPI for
11# these and will download them at build time. The 'find_links=' entry in
12# setup.cfg causes setuptools to look for these dependent tarballs in
13# tahoe-deps/ and ../tahoe-deps/ before it resorts to downloading them from
14# PyPI.
15
16# https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-deps.tar.gz contains a
17# bundle of these dependencies (as Python source distributions or "sdists"). So
18# it you want to avoid the build-time download (say, if you're on an airplane,
19# or a desert island), just grab a copy and unpack it in your tahoe darcs tree.
20
21# Alternatively, if you're building from a release/nightly tarball instead of
22# a darcs tree, the 'sumo' tarball variant will include all of these
23# dependencies in the tahoe-deps/ directory.
24
25find_links=misc/dependencies tahoe-deps ../tahoe-deps
26 https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-dep-sdists/
27 https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/
28
29# Other sites that we might want to list:
30# http://sourceforge.net/project/showfiles.php?group_id=78018&package_id=79063
31# http://pypi.python.org/pypi/pywin32
32# (See ticket #142.)
33
34[aliases]
35build = update_version develop --prefix=support make_executable build
36test = update_version develop --prefix=support make_executable build trial
37sdist = update_version sdist
38install = update_version install
39bdist_egg = update_version bdist_egg
40trial = update_version trial
41sdist_dsc = update_version sdist_dsc
Note: See TracBrowser for help on using the repository browser.