Declare our new dependencies

This commit is contained in:
Jean-Paul Calderone 2019-02-25 11:55:47 -05:00
parent abae1be9c6
commit f20184ce95
2 changed files with 6 additions and 0 deletions

View File

@ -273,6 +273,8 @@ setup(name="tahoe-lafs", # also set in __init__.py
"hypothesis >= 3.6.1",
"treq",
"towncrier",
"testtools",
"fixtures",
],
"tor": [
"foolscap[tor] >= 0.12.5",

View File

@ -104,6 +104,9 @@ install_requires = [
# won't end up stuck on Eliot 1.6.100 with a critical fix only present in
# 1.6.101. And if we do, I know how to deal with that situation.
"eliot >= 1.6.0, <= 1.6.100",
# A great way to define types of values.
"attrs >= 18.2.0",
]
# Includes some indirect dependencies, but does not include allmydata.
@ -133,6 +136,7 @@ package_imports = [
('magic-wormhole', 'wormhole'),
('setuptools', 'setuptools'),
('eliot', 'eliot'),
('attrs', 'attr'),
]
# Dependencies for which we don't know how to get a version number at run-time.