2008-01-22 20:46:47 +00:00
|
|
|
[easy_install]
|
2010-05-04 06:16:53 +00:00
|
|
|
# Tahoe-LAFS actually does work at least as well as any package works when
|
|
|
|
# zipped, but zipping eggs causes various problems
|
|
|
|
# (http://bugs.python.org/setuptools/issue33 ), and generally makes it harder
|
|
|
|
# for people to get at the source code, and doesn't actually provide any
|
|
|
|
# benefits that I am aware of.
|
2008-01-22 20:46:47 +00:00
|
|
|
zip_ok=False
|
2008-09-17 01:36:27 +00:00
|
|
|
|
2010-05-04 06:16:53 +00:00
|
|
|
# Tahoe-LAFS depends upon several libraries (foolscap, twisted, pycryptopp,
|
|
|
|
# zfec, and others). Left to its own devices, setuptools will look on PyPI for
|
|
|
|
# these and will download them at build time. The 'find_links=' entry in
|
|
|
|
# setup.cfg causes setuptools to look for these dependent tarballs in
|
|
|
|
# tahoe-deps/ and ../tahoe-deps/ before it resorts to downloading them from
|
|
|
|
# PyPI.
|
2008-09-17 01:36:27 +00:00
|
|
|
|
2012-03-13 20:26:54 +00:00
|
|
|
# https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-deps.tar.gz contains a
|
2013-03-19 22:26:21 +00:00
|
|
|
# bundle of these dependencies (as Python source distributions or "sdists").
|
|
|
|
# So it you want to avoid the build-time download (say, if you're on an
|
|
|
|
# airplane, or a desert island), just grab a copy and unpack it in your tahoe
|
|
|
|
# source tree.
|
2008-09-17 01:36:27 +00:00
|
|
|
|
|
|
|
# Alternatively, if you're building from a release/nightly tarball instead of
|
2013-03-19 22:26:21 +00:00
|
|
|
# a git tree, the 'sumo' tarball variant will include all of these
|
2008-09-17 01:36:27 +00:00
|
|
|
# dependencies in the tahoe-deps/ directory.
|
|
|
|
|
2016-03-22 20:38:31 +00:00
|
|
|
find_links=tahoe-deps ../tahoe-deps
|
2013-04-24 21:58:27 +00:00
|
|
|
https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-sdists/
|
2012-03-13 20:30:41 +00:00
|
|
|
https://tahoe-lafs.org/source/tahoe-lafs/deps/tahoe-lafs-dep-eggs/
|
2008-12-06 00:30:54 +00:00
|
|
|
|
2009-01-14 19:50:23 +00:00
|
|
|
# Other sites that we might want to list:
|
2009-01-11 16:11:26 +00:00
|
|
|
# http://sourceforge.net/project/showfiles.php?group_id=78018&package_id=79063
|
2008-12-06 00:30:54 +00:00
|
|
|
# http://pypi.python.org/pypi/pywin32
|
2012-03-13 20:26:54 +00:00
|
|
|
# (See ticket #142.)
|
2008-12-06 00:30:54 +00:00
|
|
|
|
2009-01-20 19:37:23 +00:00
|
|
|
[aliases]
|
2016-02-09 17:50:46 +00:00
|
|
|
build = update_version build
|
2011-12-05 04:40:01 +00:00
|
|
|
sdist = update_version sdist
|
2016-02-23 18:26:01 +00:00
|
|
|
install = update_version install
|
2016-02-23 20:09:07 +00:00
|
|
|
develop = update_version develop
|
2011-12-05 04:40:01 +00:00
|
|
|
bdist_egg = update_version bdist_egg
|