]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - setup.cfg
Merge pull request #236 from daira/2725.timezone-test.0
[tahoe-lafs/tahoe-lafs.git] / setup.cfg
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.
7 zip_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").
18 # So it you want to avoid the build-time download (say, if you're on an
19 # airplane, or a desert island), just grab a copy and unpack it in your tahoe
20 # source tree.
21
22 # Alternatively, if you're building from a release/nightly tarball instead of
23 # a git tree, the 'sumo' tarball variant will include all of these
24 # dependencies in the tahoe-deps/ directory.
25
26 find_links=misc/dependencies tahoe-deps ../tahoe-deps
27  https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-sdists/
28  https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/
29
30 # Other sites that we might want to list:
31 # http://sourceforge.net/project/showfiles.php?group_id=78018&package_id=79063
32 # http://pypi.python.org/pypi/pywin32
33 # (See ticket #142.)
34
35 [aliases]
36 build = update_version develop --prefix=support make_executable build
37 test = update_version develop --prefix=support make_executable build trial
38 sdist = update_version sdist
39 install = update_version install
40 bdist_egg = update_version bdist_egg
41 trial = update_version trial