]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - setup.cfg
setup: stop trying to add specific dirs to site-dirs to work-around setuptools #17
[tahoe-lafs/tahoe-lafs.git] / setup.cfg
1 [easy_install]
2 # allmydata-tahoe actually does work at least as well as any package
3 # works when zipped, but zipping eggs causes various problems
4 # (http://bugs.python.org/setuptools/issue33 ), and generally makes it
5 # harder for people to get at the source code, and doesn't actually
6 # provide any benefits that I am aware of.
7 zip_ok=False
8
9 # Tahoe depends upon several libraries (foolscap, twisted, pycryptopp,
10 # zfec, and others). Left to its own devices, setuptools will look on
11 # PyPI for these and will download them at build time. The
12 # 'find_links=' entry in setup.cfg causes setuptools to look for these
13 # dependent tarballs in tahoe-deps/ and ../tahoe-deps/ before it
14 # resorts to downloading them from PyPI.
15
16 # http://allmydata.org/source/tahoe/deps/tahoe-deps.tar.gz contains a bundle
17 # of these dependencies. So it you want to avoid the build-time download
18 # (say, if you're on an airplane, or a desert island), just grab a copy and
19 # 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
25 # The directory on the allmydata.org testgrid is a directory where
26 # tahoe developers host copies of upstream dependencies.
27
28 find_links=misc/dependencies tahoe-deps ../tahoe-deps
29         http://testgrid.allmydata.org:3567/uri/URI%3ADIR2-RO%3Asnrfwfxatrci35zdgjnzxxx2ke%3Aunarxv347edtku3xzmefy4mcdmfngxzeb72iyqcadbjzjpczjx5a/index.html
30
31 # Other sites that we might want to list:
32 # http://sourceforge.net/project/showfiles.php?group_id=78018&package_id=79063
33 # http://pypi.python.org/pypi/pywin32
34
35 [aliases]
36 build = darcsver --count-all-patches develop --prefix=support make_executable build
37 test = darcsver --count-all-patches develop --prefix=support make_executable build trial
38 sdist = darcsver --count-all-patches sdist
39 install = darcsver --count-all-patches install
40 bdist_egg = darcsver --count-all-patches bdist_egg
41 trial = darcsver --count-all-patches trial