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"). 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 | |
---|
25 | find_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] |
---|
35 | build = update_version develop --prefix=support make_executable build |
---|
36 | test = update_version develop --prefix=support make_executable build trial |
---|
37 | sdist = update_version sdist |
---|
38 | install = update_version install |
---|
39 | bdist_egg = update_version bdist_egg |
---|
40 | trial = update_version trial |
---|
41 | sdist_dsc = update_version sdist_dsc |
---|