setup.py 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #!/usr/bin/env python
  2. # Copyright 2014-2017 OpenMarket Ltd
  3. # Copyright 2017 Vector Creations Ltd
  4. # Copyright 2017-2018 New Vector Ltd
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. import glob
  18. import os
  19. from setuptools import setup, find_packages, Command
  20. import sys
  21. here = os.path.abspath(os.path.dirname(__file__))
  22. # Some notes on `setup.py test`:
  23. #
  24. # Once upon a time we used to try to make `setup.py test` run `tox` to run the
  25. # tests. That's a bad idea for three reasons:
  26. #
  27. # 1: `setup.py test` is supposed to find out whether the tests work in the
  28. # *current* environmentt, not whatever tox sets up.
  29. # 2: Empirically, trying to install tox during the test run wasn't working ("No
  30. # module named virtualenv").
  31. # 3: The tox documentation advises against it[1].
  32. #
  33. # Even further back in time, we used to use setuptools_trial [2]. That has its
  34. # own set of issues: for instance, it requires installation of Twisted to build
  35. # an sdist (because the recommended mode of usage is to add it to
  36. # `setup_requires`). That in turn means that in order to successfully run tox
  37. # you have to have the python header files installed for whichever version of
  38. # python tox uses (which is python3 on recent ubuntus, for example).
  39. #
  40. # So, for now at least, we stick with what appears to be the convention among
  41. # Twisted projects, and don't attempt to do anything when someone runs
  42. # `setup.py test`; instead we direct people to run `trial` directly if they
  43. # care.
  44. #
  45. # [1]: http://tox.readthedocs.io/en/2.5.0/example/basic.html#integration-with-setup-py-test-command
  46. # [2]: https://pypi.python.org/pypi/setuptools_trial
  47. class TestCommand(Command):
  48. user_options = []
  49. def initialize_options(self):
  50. pass
  51. def finalize_options(self):
  52. pass
  53. def run(self):
  54. print ("""Synapse's tests cannot be run via setup.py. To run them, try:
  55. PYTHONPATH="." trial tests
  56. """)
  57. def read_file(path_segments):
  58. """Read a file from the package. Takes a list of strings to join to
  59. make the path"""
  60. file_path = os.path.join(here, *path_segments)
  61. with open(file_path) as f:
  62. return f.read()
  63. def exec_file(path_segments):
  64. """Execute a single python file to get the variables defined in it"""
  65. result = {}
  66. code = read_file(path_segments)
  67. exec(code, result)
  68. return result
  69. version = exec_file(("synapse", "__init__.py"))["__version__"]
  70. dependencies = exec_file(("synapse", "python_dependencies.py"))
  71. long_description = read_file(("README.rst",))
  72. REQUIREMENTS = dependencies['REQUIREMENTS']
  73. CONDITIONAL_REQUIREMENTS = dependencies['CONDITIONAL_REQUIREMENTS']
  74. # Make `pip install matrix-synapse[all]` install all the optional dependencies.
  75. ALL_OPTIONAL_REQUIREMENTS = set()
  76. for optional_deps in CONDITIONAL_REQUIREMENTS.values():
  77. ALL_OPTIONAL_REQUIREMENTS = set(optional_deps) | ALL_OPTIONAL_REQUIREMENTS
  78. CONDITIONAL_REQUIREMENTS["all"] = list(ALL_OPTIONAL_REQUIREMENTS)
  79. setup(
  80. name="matrix-synapse",
  81. version=version,
  82. packages=find_packages(exclude=["tests", "tests.*"]),
  83. description="Reference homeserver for the Matrix decentralised comms protocol",
  84. install_requires=REQUIREMENTS,
  85. extras_require=CONDITIONAL_REQUIREMENTS,
  86. include_package_data=True,
  87. zip_safe=False,
  88. long_description=long_description,
  89. scripts=["synctl"] + glob.glob("scripts/*"),
  90. cmdclass={'test': TestCommand},
  91. )