2007-03-29 21:01:28 +00:00
|
|
|
#! /usr/bin/env python
|
2009-09-20 18:03:43 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-03-23 05:22:53 +00:00
|
|
|
import sys
|
2006-12-05 08:29:26 +00:00
|
|
|
|
2010-05-04 09:43:40 +00:00
|
|
|
# Tahoe-LAFS -- secure, distributed storage grid
|
2008-07-14 21:53:25 +00:00
|
|
|
#
|
2012-03-13 20:50:57 +00:00
|
|
|
# Copyright © 2006-2012 The Tahoe-LAFS Software Foundation
|
2008-07-14 21:53:25 +00:00
|
|
|
#
|
2009-08-02 02:57:10 +00:00
|
|
|
# This file is part of Tahoe-LAFS.
|
2008-07-14 21:53:25 +00:00
|
|
|
#
|
2011-05-10 19:16:50 +00:00
|
|
|
# See the docs/about.rst file for licensing information.
|
2006-12-05 08:29:26 +00:00
|
|
|
|
2016-02-16 18:59:02 +00:00
|
|
|
import os, subprocess, re
|
2008-09-12 01:03:21 +00:00
|
|
|
|
|
|
|
basedir = os.path.dirname(os.path.abspath(__file__))
|
2008-12-06 00:30:54 +00:00
|
|
|
|
2009-08-18 01:00:57 +00:00
|
|
|
# locate our version number
|
|
|
|
|
|
|
|
def read_version_py(infname):
|
|
|
|
try:
|
|
|
|
verstrline = open(infname, "rt").read()
|
|
|
|
except EnvironmentError:
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
VSRE = r"^verstr = ['\"]([^'\"]*)['\"]"
|
|
|
|
mo = re.search(VSRE, verstrline, re.M)
|
|
|
|
if mo:
|
|
|
|
return mo.group(1)
|
|
|
|
|
2014-11-21 07:56:21 +00:00
|
|
|
VERSION_PY_FILENAME = 'src/allmydata/_version.py'
|
|
|
|
version = read_version_py(VERSION_PY_FILENAME)
|
2009-08-18 01:00:57 +00:00
|
|
|
|
2019-08-13 22:54:16 +00:00
|
|
|
install_requires = [
|
2019-08-13 23:11:35 +00:00
|
|
|
# we don't need much out of setuptools but the version checking stuff
|
|
|
|
# needs pkg_resources and PEP 440 version specifiers.
|
2019-08-13 22:54:16 +00:00
|
|
|
"setuptools >= 28.8.0",
|
|
|
|
|
|
|
|
"zfec >= 1.1.0",
|
|
|
|
|
|
|
|
# zope.interface >= 3.6.0 is required for Twisted >= 12.1.0.
|
|
|
|
# zope.interface 3.6.3 and 3.6.4 are incompatible with Nevow (#1435).
|
|
|
|
"zope.interface >= 3.6.0, != 3.6.3, != 3.6.4",
|
|
|
|
|
|
|
|
# * foolscap < 0.5.1 had a performance bug which spent O(N**2) CPU for
|
|
|
|
# transferring large mutable files of size N.
|
|
|
|
# * foolscap < 0.6 is incompatible with Twisted 10.2.0.
|
|
|
|
# * foolscap 0.6.1 quiets a DeprecationWarning.
|
|
|
|
# * foolscap < 0.6.3 is incompatible with Twisted 11.1.0 and newer.
|
|
|
|
# * foolscap 0.8.0 generates 2048-bit RSA-with-SHA-256 signatures,
|
|
|
|
# rather than 1024-bit RSA-with-MD5. This also allows us to work
|
|
|
|
# with a FIPS build of OpenSSL.
|
|
|
|
# * foolscap >= 0.12.3 provides tcp/tor/i2p connection handlers we need,
|
|
|
|
# and allocate_tcp_port
|
|
|
|
# * foolscap >= 0.12.5 has ConnectionInfo and ReconnectionInfo
|
|
|
|
# * foolscap >= 0.12.6 has an i2p.sam_endpoint() that takes kwargs
|
2020-01-13 15:52:09 +00:00
|
|
|
# * foolscap 0.13.2 drops i2p support completely
|
2020-07-02 18:26:35 +00:00
|
|
|
# * foolscap >= 20.4 is necessary for Python 3
|
2020-07-03 17:15:13 +00:00
|
|
|
"foolscap == 0.13.1 ; python_version < '3.0'",
|
|
|
|
"foolscap >= 20.4.0 ; python_version > '3.0'",
|
2019-08-13 22:54:16 +00:00
|
|
|
|
2019-10-16 19:20:14 +00:00
|
|
|
# * cryptography 2.6 introduced some ed25519 APIs we rely on. Note that
|
|
|
|
# Twisted[conch] also depends on cryptography and Twisted[tls]
|
|
|
|
# transitively depends on cryptography. So it's anyone's guess what
|
|
|
|
# version of cryptography will *really* be installed.
|
|
|
|
"cryptography >= 2.6",
|
|
|
|
|
2020-02-13 15:21:45 +00:00
|
|
|
# * We need Twisted 10.1.0 for the FTP frontend in order for
|
2019-08-13 22:54:16 +00:00
|
|
|
# Twisted's FTP server to support asynchronous close.
|
|
|
|
# * The SFTP frontend depends on Twisted 11.0.0 to fix the SSH server
|
|
|
|
# rekeying bug <https://twistedmatrix.com/trac/ticket/4395>
|
|
|
|
# * The FTP frontend depends on Twisted >= 11.1.0 for
|
|
|
|
# filepath.Permissions
|
|
|
|
# * Nevow 0.11.1 depends on Twisted >= 13.0.0.
|
|
|
|
# * The SFTP frontend and manhole depend on the conch extra. However, we
|
|
|
|
# can't explicitly declare that without an undesirable dependency on gmpy,
|
|
|
|
# as explained in ticket #2740.
|
|
|
|
# * Due to a setuptools bug, we need to declare a dependency on the tls
|
|
|
|
# extra even though we only depend on it via foolscap.
|
|
|
|
# * Twisted >= 15.1.0 is the first version that provided the [tls] extra.
|
|
|
|
# * Twisted-16.1.0 fixes https://twistedmatrix.com/trac/ticket/8223,
|
|
|
|
# which otherwise causes test_system to fail (DirtyReactorError, due to
|
|
|
|
# leftover timers)
|
|
|
|
# * Twisted-16.4.0 introduces `python -m twisted.trial` which is needed
|
|
|
|
# for coverage testing
|
|
|
|
# * Twisted 16.6.0 drops the undesirable gmpy dependency from the conch
|
|
|
|
# extra, letting us use that extra instead of trying to duplicate its
|
|
|
|
# dependencies here. Twisted[conch] >18.7 introduces a dependency on
|
|
|
|
# bcrypt. It is nice to avoid that if the user ends up with an older
|
|
|
|
# version of Twisted. That's hard to express except by using the extra.
|
2019-08-14 18:48:12 +00:00
|
|
|
#
|
2020-01-17 16:45:08 +00:00
|
|
|
# * Twisted 18.4.0 adds `client` and `host` attributes to `Request` in the
|
|
|
|
# * initializer, needed by logic in our custom `Request` subclass.
|
|
|
|
#
|
2019-08-14 18:48:12 +00:00
|
|
|
# In a perfect world, Twisted[conch] would be a dependency of an "sftp"
|
|
|
|
# extra. However, pip fails to resolve the dependencies all
|
|
|
|
# dependencies when asked for Twisted[tls] *and* Twisted[conch].
|
|
|
|
# Specifically, "Twisted[conch]" (as the later requirement) is ignored.
|
|
|
|
# If there were an Tahoe-LAFS sftp extra that dependended on
|
|
|
|
# Twisted[conch] and install_requires only included Twisted[tls] then
|
|
|
|
# `pip install tahoe-lafs[sftp]` would not install requirements
|
|
|
|
# specified by Twisted[conch]. Since this would be the *whole point* of
|
|
|
|
# an sftp extra in Tahoe-LAFS, there is no point in having one.
|
2020-01-17 16:45:08 +00:00
|
|
|
"Twisted[tls,conch] >= 18.4.0",
|
2019-08-13 22:54:16 +00:00
|
|
|
|
|
|
|
# We need Nevow >= 0.11.1 which can be installed using pip.
|
|
|
|
"Nevow >= 0.11.1",
|
|
|
|
|
|
|
|
"PyYAML >= 3.11",
|
|
|
|
|
|
|
|
"six >= 1.10.0",
|
|
|
|
|
|
|
|
# for 'tahoe invite' and 'tahoe join'
|
|
|
|
"magic-wormhole >= 0.10.2",
|
|
|
|
|
|
|
|
# Eliot is contemplating dropping Python 2 support. Stick to a version we
|
2019-08-13 23:11:44 +00:00
|
|
|
# know works on Python 2.7.
|
|
|
|
"eliot ~= 1.7",
|
2019-08-13 22:54:16 +00:00
|
|
|
|
2020-09-08 20:31:57 +00:00
|
|
|
# Pyrsistent 0.17.0 (which we use by way of Eliot) has dropped
|
|
|
|
# Python 2 entirely; stick to the version known to work for us.
|
|
|
|
# XXX: drop this bound: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3404
|
2020-09-08 21:23:08 +00:00
|
|
|
"pyrsistent < 0.17.0",
|
2020-09-08 20:31:57 +00:00
|
|
|
|
2019-08-13 22:54:16 +00:00
|
|
|
# A great way to define types of values.
|
2020-08-21 19:53:58 +00:00
|
|
|
# XXX: drop the upper bound: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3390
|
|
|
|
"attrs >= 18.2.0, < 20",
|
2019-08-13 22:54:16 +00:00
|
|
|
|
|
|
|
# WebSocket library for twisted and asyncio
|
|
|
|
"autobahn >= 19.5.2",
|
2020-07-02 18:10:38 +00:00
|
|
|
|
|
|
|
# Support for Python 3 transition
|
|
|
|
"future >= 0.18.2",
|
2020-07-08 15:56:53 +00:00
|
|
|
|
|
|
|
# Utility code:
|
|
|
|
"pyutil >= 3.3.0",
|
2020-07-24 18:01:14 +00:00
|
|
|
|
|
|
|
# Linux distribution detection:
|
|
|
|
"distro >= 1.4.0",
|
2019-08-13 22:54:16 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
setup_requires = [
|
|
|
|
'setuptools >= 28.8.0', # for PEP-440 style versions
|
|
|
|
]
|
2010-10-29 22:28:25 +00:00
|
|
|
|
2019-08-14 13:04:20 +00:00
|
|
|
tor_requires = [
|
2019-08-14 18:48:12 +00:00
|
|
|
# This is exactly what `foolscap[tor]` means but pip resolves the pair of
|
|
|
|
# dependencies "foolscap[i2p] foolscap[tor]" to "foolscap[i2p]" so we lose
|
|
|
|
# this if we don't declare it ourselves!
|
|
|
|
"txtorcon >= 0.17.0",
|
2019-08-14 13:04:20 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
i2p_requires = [
|
2020-07-01 11:59:39 +00:00
|
|
|
# txi2p has Python 3 support, but it's unreleased: https://github.com/str4d/txi2p/issues/10.
|
2020-07-15 00:11:58 +00:00
|
|
|
# URL lookups are in PEP-508 (via https://stackoverflow.com/a/54794506).
|
2020-07-01 11:59:39 +00:00
|
|
|
# Also see the comment in tor_requires.
|
|
|
|
"txi2p @ git+https://github.com/str4d/txi2p@0611b9a86172cb70d2f5e415a88eee9f230590b3#egg=txi2p",
|
2019-08-14 13:04:20 +00:00
|
|
|
]
|
|
|
|
|
2011-01-15 02:26:51 +00:00
|
|
|
if len(sys.argv) > 1 and sys.argv[1] == '--fakedependency':
|
|
|
|
del sys.argv[1]
|
|
|
|
install_requires += ["fakedependency >= 1.0.0"]
|
|
|
|
|
2017-08-07 23:49:28 +00:00
|
|
|
from setuptools import find_packages, setup
|
2009-01-29 14:00:58 +00:00
|
|
|
from setuptools import Command
|
2016-02-23 18:25:35 +00:00
|
|
|
from setuptools.command import install
|
|
|
|
|
2008-12-01 18:48:04 +00:00
|
|
|
|
2007-04-27 20:47:15 +00:00
|
|
|
trove_classifiers=[
|
2008-04-14 18:08:23 +00:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2007-04-27 20:47:15 +00:00
|
|
|
"Environment :: Console",
|
|
|
|
"Environment :: Web Environment",
|
2008-07-14 21:53:25 +00:00
|
|
|
"License :: OSI Approved :: GNU General Public License (GPL)",
|
2008-01-08 18:45:00 +00:00
|
|
|
"License :: DFSG approved",
|
|
|
|
"License :: Other/Proprietary License",
|
2008-07-14 21:53:25 +00:00
|
|
|
"Intended Audience :: Developers",
|
2007-04-27 20:47:15 +00:00
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"Operating System :: Microsoft",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Operating System :: Unix",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
2008-07-14 21:53:25 +00:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Programming Language :: C",
|
|
|
|
"Programming Language :: Python",
|
2008-10-21 16:32:00 +00:00
|
|
|
"Programming Language :: Python :: 2",
|
2011-01-08 21:12:12 +00:00
|
|
|
"Programming Language :: Python :: 2.7",
|
2007-04-27 20:47:15 +00:00
|
|
|
"Topic :: Utilities",
|
|
|
|
"Topic :: System :: Systems Administration",
|
|
|
|
"Topic :: System :: Filesystems",
|
|
|
|
"Topic :: System :: Distributed Computing",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
2008-07-14 21:53:25 +00:00
|
|
|
"Topic :: System :: Archiving :: Backup",
|
|
|
|
"Topic :: System :: Archiving :: Mirroring",
|
|
|
|
"Topic :: System :: Archiving",
|
2007-04-27 20:47:15 +00:00
|
|
|
]
|
2006-12-14 10:25:30 +00:00
|
|
|
|
2007-05-04 03:14:07 +00:00
|
|
|
|
2011-12-05 04:40:01 +00:00
|
|
|
GIT_VERSION_BODY = '''
|
|
|
|
# This _version.py is generated from git metadata by the tahoe setup.py.
|
|
|
|
|
2016-03-23 05:22:53 +00:00
|
|
|
__pkgname__ = "%(pkgname)s"
|
|
|
|
real_version = "%(version)s"
|
|
|
|
full_version = "%(full)s"
|
|
|
|
branch = "%(branch)s"
|
|
|
|
verstr = "%(normalized)s"
|
2011-12-05 05:49:16 +00:00
|
|
|
__version__ = verstr
|
2011-12-05 04:40:01 +00:00
|
|
|
'''
|
|
|
|
|
2014-11-21 05:14:18 +00:00
|
|
|
def run_command(args, cwd=None):
|
2015-02-17 19:10:54 +00:00
|
|
|
use_shell = sys.platform == "win32"
|
2011-12-05 04:40:01 +00:00
|
|
|
try:
|
2015-02-17 19:10:54 +00:00
|
|
|
p = subprocess.Popen(args, stdout=subprocess.PIPE, cwd=cwd, shell=use_shell)
|
2015-12-02 19:55:59 +00:00
|
|
|
except EnvironmentError as e: # if this gives a SyntaxError, note that Tahoe-LAFS requires Python 2.7+
|
2014-11-21 05:14:18 +00:00
|
|
|
print("Warning: unable to run %r." % (" ".join(args),))
|
|
|
|
print(e)
|
2011-12-05 04:40:01 +00:00
|
|
|
return None
|
|
|
|
stdout = p.communicate()[0].strip()
|
|
|
|
if p.returncode != 0:
|
2014-11-21 05:14:18 +00:00
|
|
|
print("Warning: %r returned error code %r." % (" ".join(args), p.returncode))
|
2011-12-05 04:40:01 +00:00
|
|
|
return None
|
|
|
|
return stdout
|
|
|
|
|
|
|
|
|
2014-11-21 05:14:18 +00:00
|
|
|
def versions_from_git(tag_prefix):
|
|
|
|
# This runs 'git' from the directory that contains this file. That either
|
2011-12-05 04:40:01 +00:00
|
|
|
# means someone ran a setup.py command (and this code is in
|
|
|
|
# versioneer.py, thus the containing directory is the root of the source
|
|
|
|
# tree), or someone ran a project-specific entry point (and this code is
|
|
|
|
# in _version.py, thus the containing directory is somewhere deeper in
|
|
|
|
# the source tree). This only gets called if the git-archive 'subst'
|
|
|
|
# variables were *not* expanded, and _version.py hasn't already been
|
|
|
|
# rewritten with a short version string, meaning we're inside a checked
|
|
|
|
# out source tree.
|
|
|
|
|
|
|
|
# versions_from_git (as copied from python-versioneer) returns strings
|
|
|
|
# like "1.9.0-25-gb73aba9-dirty", which means we're in a tree with
|
|
|
|
# uncommited changes (-dirty), the latest checkin is revision b73aba9,
|
|
|
|
# the most recent tag was 1.9.0, and b73aba9 has 25 commits that weren't
|
|
|
|
# in 1.9.0 . The narrow-minded NormalizedVersion parser that takes our
|
|
|
|
# output (meant to enable sorting of version strings) refuses most of
|
|
|
|
# that. Tahoe uses a function named suggest_normalized_version() that can
|
|
|
|
# handle "1.9.0.post25", so dumb down our output to match.
|
|
|
|
|
|
|
|
try:
|
|
|
|
source_dir = os.path.dirname(os.path.abspath(__file__))
|
2014-11-21 05:14:18 +00:00
|
|
|
except NameError as e:
|
2011-12-05 04:40:01 +00:00
|
|
|
# some py2exe/bbfreeze/non-CPython implementations don't do __file__
|
2014-11-21 05:14:18 +00:00
|
|
|
print("Warning: unable to find version because we could not obtain the source directory.")
|
|
|
|
print(e)
|
|
|
|
return {}
|
2015-02-17 19:10:54 +00:00
|
|
|
stdout = run_command(["git", "describe", "--tags", "--dirty", "--always"],
|
2011-12-05 04:40:01 +00:00
|
|
|
cwd=source_dir)
|
|
|
|
if stdout is None:
|
2014-11-21 05:14:18 +00:00
|
|
|
# run_command already complained.
|
2011-12-05 04:40:01 +00:00
|
|
|
return {}
|
2016-03-23 05:22:53 +00:00
|
|
|
stdout = stdout.decode("ascii")
|
2011-12-05 04:40:01 +00:00
|
|
|
if not stdout.startswith(tag_prefix):
|
2014-11-21 05:14:18 +00:00
|
|
|
print("Warning: tag %r doesn't start with prefix %r." % (stdout, tag_prefix))
|
2011-12-05 04:40:01 +00:00
|
|
|
return {}
|
|
|
|
version = stdout[len(tag_prefix):]
|
|
|
|
pieces = version.split("-")
|
|
|
|
if len(pieces) == 1:
|
|
|
|
normalized_version = pieces[0]
|
|
|
|
else:
|
|
|
|
normalized_version = "%s.post%s" % (pieces[0], pieces[1])
|
2013-04-25 01:14:50 +00:00
|
|
|
|
2015-02-17 19:10:54 +00:00
|
|
|
stdout = run_command(["git", "rev-parse", "HEAD"], cwd=source_dir)
|
2011-12-05 04:40:01 +00:00
|
|
|
if stdout is None:
|
2014-11-21 05:14:18 +00:00
|
|
|
# run_command already complained.
|
2011-12-05 04:40:01 +00:00
|
|
|
return {}
|
2016-03-23 05:22:53 +00:00
|
|
|
full = stdout.decode("ascii").strip()
|
2011-12-05 04:40:01 +00:00
|
|
|
if version.endswith("-dirty"):
|
|
|
|
full += "-dirty"
|
2011-12-05 05:49:16 +00:00
|
|
|
normalized_version += ".dev0"
|
2013-04-25 01:14:50 +00:00
|
|
|
|
|
|
|
# Thanks to Jistanidiot at <http://stackoverflow.com/questions/6245570/get-current-branch-name>.
|
2015-02-17 19:10:54 +00:00
|
|
|
stdout = run_command(["git", "rev-parse", "--abbrev-ref", "HEAD"], cwd=source_dir)
|
2016-03-23 05:22:53 +00:00
|
|
|
branch = (stdout or b"unknown").decode("ascii").strip()
|
2013-04-25 01:14:50 +00:00
|
|
|
|
2016-03-23 05:22:53 +00:00
|
|
|
# this returns native strings (bytes on py2, unicode on py3)
|
|
|
|
return {"version": version, "normalized": normalized_version,
|
|
|
|
"full": full, "branch": branch}
|
2011-12-05 04:40:01 +00:00
|
|
|
|
2013-03-19 22:26:21 +00:00
|
|
|
# setup.cfg has an [aliases] section which runs "update_version" before many
|
|
|
|
# commands (like "build" and "sdist") that need to know our package version
|
|
|
|
# ahead of time. If you add different commands (or if we forgot some), you
|
|
|
|
# may need to add it to setup.cfg and configure it to run update_version
|
|
|
|
# before your command.
|
2011-12-05 04:40:01 +00:00
|
|
|
|
|
|
|
class UpdateVersion(Command):
|
|
|
|
description = "update _version.py from revision-control metadata"
|
2016-02-23 18:25:35 +00:00
|
|
|
user_options = install.install.user_options
|
2011-12-05 04:40:01 +00:00
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
def run(self):
|
2014-11-21 08:38:37 +00:00
|
|
|
global version
|
|
|
|
verstr = version
|
2013-03-19 22:26:21 +00:00
|
|
|
if os.path.isdir(os.path.join(basedir, ".git")):
|
|
|
|
verstr = self.try_from_git()
|
2014-11-21 08:38:37 +00:00
|
|
|
|
2011-12-05 04:40:01 +00:00
|
|
|
if verstr:
|
|
|
|
self.distribution.metadata.version = verstr
|
2014-11-21 08:38:37 +00:00
|
|
|
else:
|
|
|
|
print("""\
|
|
|
|
********************************************************************
|
|
|
|
Warning: no version information found. This may cause tests to fail.
|
|
|
|
********************************************************************
|
|
|
|
""")
|
2011-12-05 04:40:01 +00:00
|
|
|
|
2013-03-19 22:26:21 +00:00
|
|
|
def try_from_git(self):
|
2016-08-08 01:46:59 +00:00
|
|
|
# If we change the release tag names, we must change this too
|
|
|
|
versions = versions_from_git("tahoe-lafs-")
|
2016-03-23 05:22:53 +00:00
|
|
|
|
|
|
|
# setup.py might be run by either py2 or py3 (when run by tox, which
|
|
|
|
# uses py3 on modern debian/ubuntu distros). We want this generated
|
|
|
|
# file to contain native strings on both (str=bytes in py2,
|
|
|
|
# str=unicode in py3)
|
2011-12-05 04:40:01 +00:00
|
|
|
if versions:
|
2016-03-23 05:22:53 +00:00
|
|
|
body = GIT_VERSION_BODY % {
|
|
|
|
"pkgname": self.distribution.get_name(),
|
|
|
|
"version": versions["version"],
|
|
|
|
"normalized": versions["normalized"],
|
|
|
|
"full": versions["full"],
|
|
|
|
"branch": versions["branch"],
|
|
|
|
}
|
2014-11-21 07:56:21 +00:00
|
|
|
f = open(VERSION_PY_FILENAME, "wb")
|
2016-03-23 05:22:53 +00:00
|
|
|
f.write(body.encode("ascii"))
|
2013-03-19 22:26:21 +00:00
|
|
|
f.close()
|
2014-11-21 08:38:37 +00:00
|
|
|
print("Wrote normalized version %r into '%s'" % (versions["normalized"], VERSION_PY_FILENAME))
|
2014-11-21 07:56:21 +00:00
|
|
|
|
2011-12-05 04:40:01 +00:00
|
|
|
return versions.get("normalized", None)
|
|
|
|
|
2016-09-09 23:43:58 +00:00
|
|
|
class PleaseUseTox(Command):
|
|
|
|
user_options = []
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self):
|
2016-09-10 00:09:42 +00:00
|
|
|
print("ERROR: Please use 'tox' to run the test suite.")
|
2016-09-09 23:43:58 +00:00
|
|
|
sys.exit(1)
|
2011-12-05 04:40:01 +00:00
|
|
|
|
2009-08-18 01:00:57 +00:00
|
|
|
setup_args = {}
|
|
|
|
if version:
|
|
|
|
setup_args["version"] = version
|
|
|
|
|
2016-08-08 01:46:59 +00:00
|
|
|
setup(name="tahoe-lafs", # also set in __init__.py
|
2015-07-31 17:21:47 +00:00
|
|
|
description='secure, decentralized, fault-tolerant file store',
|
2014-09-09 17:51:44 +00:00
|
|
|
long_description=open('README.rst', 'rU').read(),
|
2010-05-04 09:43:40 +00:00
|
|
|
author='the Tahoe-LAFS project',
|
2010-09-30 15:37:08 +00:00
|
|
|
author_email='tahoe-dev@tahoe-lafs.org',
|
2011-10-29 18:39:46 +00:00
|
|
|
url='https://tahoe-lafs.org/',
|
2014-09-09 17:51:44 +00:00
|
|
|
license='GNU GPL', # see README.rst -- there is an alternative licence
|
2016-03-22 20:59:10 +00:00
|
|
|
cmdclass={"update_version": UpdateVersion,
|
2016-09-09 23:43:58 +00:00
|
|
|
"test": PleaseUseTox,
|
2008-09-12 01:03:21 +00:00
|
|
|
},
|
2007-11-10 01:04:19 +00:00
|
|
|
package_dir = {'':'src'},
|
2019-04-26 17:28:13 +00:00
|
|
|
packages=find_packages('src') + ['allmydata.test.plugins'],
|
2007-04-27 20:47:15 +00:00
|
|
|
classifiers=trove_classifiers,
|
2020-06-26 11:50:42 +00:00
|
|
|
# We support Python 2.7, and we're working on support for 3.6 (the
|
|
|
|
# highest version that PyPy currently supports).
|
2020-08-21 20:05:36 +00:00
|
|
|
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
|
2008-09-12 01:03:21 +00:00
|
|
|
install_requires=install_requires,
|
2016-08-08 18:35:54 +00:00
|
|
|
extras_require={
|
2020-01-17 15:59:23 +00:00
|
|
|
# Duplicate the Twisted pywin32 dependency here. See
|
|
|
|
# https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2392 for some
|
|
|
|
# discussion.
|
|
|
|
':sys_platform=="win32"': ["pywin32 != 226"],
|
2016-08-08 18:35:54 +00:00
|
|
|
"test": [
|
2020-07-06 17:50:06 +00:00
|
|
|
"flake8",
|
2019-01-24 15:23:26 +00:00
|
|
|
# Pin a specific pyflakes so we don't have different folks
|
|
|
|
# disagreeing on what is or is not a lint issue. We can bump
|
|
|
|
# this version from time to time, but we will do it
|
|
|
|
# intentionally.
|
2020-07-06 17:50:06 +00:00
|
|
|
"pyflakes == 2.2.0",
|
2019-12-18 20:31:17 +00:00
|
|
|
# coverage 5.0 breaks the integration tests in some opaque way.
|
|
|
|
# This probably needs to be addressed in a more permanent way
|
|
|
|
# eventually...
|
2019-12-18 18:11:59 +00:00
|
|
|
"coverage ~= 4.5",
|
2016-08-08 18:35:54 +00:00
|
|
|
"mock",
|
|
|
|
"tox",
|
2016-08-22 23:36:56 +00:00
|
|
|
"pytest",
|
|
|
|
"pytest-twisted",
|
2017-01-26 03:58:20 +00:00
|
|
|
"hypothesis >= 3.6.1",
|
2017-02-21 21:15:23 +00:00
|
|
|
"treq",
|
2018-08-06 15:40:44 +00:00
|
|
|
"towncrier",
|
2019-02-25 16:55:47 +00:00
|
|
|
"testtools",
|
|
|
|
"fixtures",
|
2019-08-14 18:45:16 +00:00
|
|
|
"beautifulsoup4",
|
|
|
|
"html5lib",
|
2020-07-03 21:35:48 +00:00
|
|
|
"junitxml",
|
2020-07-28 15:08:38 +00:00
|
|
|
"tenacity",
|
2019-08-14 18:48:12 +00:00
|
|
|
] + tor_requires + i2p_requires,
|
2019-08-14 13:04:20 +00:00
|
|
|
"tor": tor_requires,
|
|
|
|
"i2p": i2p_requires,
|
2016-08-08 18:35:54 +00:00
|
|
|
},
|
2014-03-29 00:41:33 +00:00
|
|
|
package_data={"allmydata.web": ["*.xhtml",
|
|
|
|
"static/*.js", "static/*.png", "static/*.css",
|
|
|
|
"static/img/*.png",
|
|
|
|
"static/css/*.css",
|
2019-09-16 14:03:06 +00:00
|
|
|
],
|
2019-09-13 20:22:41 +00:00
|
|
|
"allmydata": ["ported-modules.txt"],
|
2012-01-08 18:16:54 +00:00
|
|
|
},
|
2019-05-28 14:01:36 +00:00
|
|
|
include_package_data=True,
|
2008-01-01 06:28:31 +00:00
|
|
|
setup_requires=setup_requires,
|
2007-10-11 10:38:24 +00:00
|
|
|
entry_points = { 'console_scripts': [ 'tahoe = allmydata.scripts.runner:run' ] },
|
2009-08-18 01:00:57 +00:00
|
|
|
**setup_args
|
2007-04-27 20:47:15 +00:00
|
|
|
)
|