blob: 5b29d32e636f8c908a01cd9882f859773e5ee6c9 [file] [log] [blame]
Dominic Chen9604d9e2015-10-10 05:13:31 +00001#!/usr/bin/env python
2
Alex Gaynor5951f462014-11-16 09:08:42 -08003# This file is dual licensed under the terms of the Apache License, Version
4# 2.0, and the BSD License. See the LICENSE file in the root of this repository
5# for complete details.
Alex Gaynorc37feed2014-03-08 08:32:56 -08006
7from __future__ import absolute_import, division, print_function
8
Alex Gaynorf51f2c12014-01-03 07:33:01 -08009import os
Terry Chia361545d2014-07-28 12:06:54 +080010import platform
Alex Stapletona39a3192014-03-14 20:03:12 +000011import subprocess
Alex Stapleton707b0082014-04-20 22:24:41 +010012import sys
Alex Stapleton4b610cc2014-03-22 08:49:35 +000013from distutils.command.build import build
Alex Stapletona39a3192014-03-14 20:03:12 +000014
15import pkg_resources
Alex Gaynor9a00f052014-01-02 13:09:34 -080016
Alex Gaynor4941fc52017-10-28 11:28:53 -040017import setuptools
Paul Kehrerafc1ccd2014-03-19 11:49:32 -040018from setuptools import find_packages, setup
Sascha Peilickec5492052014-03-31 17:59:37 +020019from setuptools.command.install import install
Alex Gaynoracac6a62014-03-04 15:24:03 -080020from setuptools.command.test import test
Donald Stufft446a4572013-08-11 17:38:13 -040021
Paul Kehrerafc1ccd2014-03-19 11:49:32 -040022
Alex Gaynor4941fc52017-10-28 11:28:53 -040023if (
24 pkg_resources.parse_version(setuptools.__version__) <
25 pkg_resources.parse_version("18.5")
26):
27 raise RuntimeError(
28 "cryptography requires setuptools 18.5 or newer, please upgrade to a "
29 "newer version of setuptools"
30 )
31
Alex Gaynor7630d6c2014-01-03 07:34:43 -080032base_dir = os.path.dirname(__file__)
Donald Stufftc62a78c2014-11-07 19:17:08 -050033src_dir = os.path.join(base_dir, "src")
34
35# When executing the setup.py, we need to be able to import ourselves, this
36# means that we need to add the src/ directory to the sys.path.
37sys.path.insert(0, src_dir)
Alex Gaynor7630d6c2014-01-03 07:34:43 -080038
Donald Stufft5f12a1b2013-08-11 16:37:43 -040039about = {}
Donald Stufftc62a78c2014-11-07 19:17:08 -050040with open(os.path.join(src_dir, "cryptography", "__about__.py")) as f:
Alex Gaynor7630d6c2014-01-03 07:34:43 -080041 exec(f.read(), about)
Donald Stufft5f12a1b2013-08-11 16:37:43 -040042
43
Alex Stapletona39a3192014-03-14 20:03:12 +000044VECTORS_DEPENDENCY = "cryptography_vectors=={0}".format(about['__version__'])
Donald Stufft5f12a1b2013-08-11 16:37:43 -040045
Alex Gaynor2af3d4c2018-07-23 13:10:13 -040046# `setup_requirements` must be kept in sync with `pyproject.toml`
Paul Kehrer3c682502018-12-10 12:13:31 +080047setup_requirements = ["cffi>=1.8,!=1.11.3"]
Donald Stufft5f12a1b2013-08-11 16:37:43 -040048
Paul Kehrer7d17cbb2015-08-20 13:25:15 -050049if platform.python_implementation() == "PyPy":
Paul Kehrer3c682502018-12-10 12:13:31 +080050 if sys.pypy_version_info < (5, 4):
Paul Kehrer7d17cbb2015-08-20 13:25:15 -050051 raise RuntimeError(
Paul Kehrer3c682502018-12-10 12:13:31 +080052 "cryptography is not compatible with PyPy < 5.4. Please upgrade "
Alex Gaynorba45d282018-04-08 16:39:08 -040053 "PyPy to use this library."
Paul Kehrer7d17cbb2015-08-20 13:25:15 -050054 )
Julian Berman4cf38112015-02-24 10:51:53 -050055
koobsff0dd1e2014-02-24 21:55:04 +110056test_requirements = [
Paul Kehrer71e42512018-10-23 19:34:01 +080057 "pytest>=3.6.0,!=3.9.0,!=3.9.1,!=3.9.2",
koobsff0dd1e2014-02-24 21:55:04 +110058 "pretend",
Alex Stapleton0bd20e22014-03-14 19:58:07 +000059 "iso8601",
InvalidInterrupt8e66ca62016-08-16 19:39:31 -070060 "pytz",
Paul Kehrer71e42512018-10-23 19:34:01 +080061 "hypothesis>=1.11.4,!=3.79.2",
koobsff0dd1e2014-02-24 21:55:04 +110062]
Alex Gaynorde3aa052016-02-19 07:33:56 -050063
koobsff0dd1e2014-02-24 21:55:04 +110064
Alex Stapletona39a3192014-03-14 20:03:12 +000065# If there's no vectors locally that probably means we are in a tarball and
66# need to go and get the matching vectors package from PyPi
67if not os.path.exists(os.path.join(base_dir, "vectors/setup.py")):
68 test_requirements.append(VECTORS_DEPENDENCY)
69
Alex Gaynor9a00f052014-01-02 13:09:34 -080070
Alex Gaynoracac6a62014-03-04 15:24:03 -080071class PyTest(test):
koobsff0dd1e2014-02-24 21:55:04 +110072 def finalize_options(self):
Alex Gaynor6858cd42014-03-04 15:33:13 -080073 test.finalize_options(self)
koobsff0dd1e2014-02-24 21:55:04 +110074 self.test_args = []
75 self.test_suite = True
koobs06671802014-02-24 22:33:07 +110076
Alex Stapletona39a3192014-03-14 20:03:12 +000077 # This means there's a vectors/ folder with the package in here.
78 # cd into it, install the vectors package and then refresh sys.path
79 if VECTORS_DEPENDENCY not in test_requirements:
Alex Gaynord9f9b752014-07-11 10:18:24 -070080 subprocess.check_call(
81 [sys.executable, "setup.py", "install"], cwd="vectors"
82 )
Alex Stapletona39a3192014-03-14 20:03:12 +000083 pkg_resources.get_distribution("cryptography_vectors").activate()
84
koobsff0dd1e2014-02-24 21:55:04 +110085 def run_tests(self):
koobs92a4cdb2014-02-24 22:13:17 +110086 # Import here because in module scope the eggs are not loaded.
koobsff0dd1e2014-02-24 21:55:04 +110087 import pytest
Alex Gaynor8a58e692015-02-20 07:58:39 -080088 test_args = [os.path.join(base_dir, "tests")]
89 errno = pytest.main(test_args)
koobsff0dd1e2014-02-24 21:55:04 +110090 sys.exit(errno)
91
Alex Gaynor9a00f052014-01-02 13:09:34 -080092
Peter Odding51ec05f2014-07-12 01:18:35 +020093def keywords_with_side_effects(argv):
Peter Oddingc9b83f72014-07-12 00:52:58 +020094 """
95 Get a dictionary with setup keywords that (can) have side effects.
96
Peter Odding51ec05f2014-07-12 01:18:35 +020097 :param argv: A list of strings with command line arguments.
98 :returns: A dictionary with keyword arguments for the ``setup()`` function.
99
Peter Oddingc9b83f72014-07-12 00:52:58 +0200100 This setup.py script uses the setuptools 'setup_requires' feature because
101 this is required by the cffi package to compile extension modules. The
102 purpose of ``keywords_with_side_effects()`` is to avoid triggering the cffi
Peter Oddinge9144562014-07-12 03:14:55 +0200103 build process as a result of setup.py invocations that don't need the cffi
104 module to be built (setup.py serves the dual purpose of exposing package
105 metadata).
Peter Oddingc9b83f72014-07-12 00:52:58 +0200106
Peter Oddinge9144562014-07-12 03:14:55 +0200107 All of the options listed by ``python setup.py --help`` that print
108 information should be recognized here. The commands ``clean``,
109 ``egg_info``, ``register``, ``sdist`` and ``upload`` are also recognized.
110 Any combination of these options and commands is also supported.
Peter Oddingc9b83f72014-07-12 00:52:58 +0200111
Peter Oddinge9144562014-07-12 03:14:55 +0200112 This function was originally based on the `setup.py script`_ of SciPy (see
113 also the discussion in `pip issue #25`_).
Peter Oddingc9b83f72014-07-12 00:52:58 +0200114
115 .. _pip issue #25: https://github.com/pypa/pip/issues/25
Peter Odding63ce5df2014-07-12 01:56:37 +0200116 .. _setup.py script: https://github.com/scipy/scipy/blob/master/setup.py
Peter Oddingc9b83f72014-07-12 00:52:58 +0200117 """
Peter Oddinge9144562014-07-12 03:14:55 +0200118 no_setup_requires_arguments = (
119 '-h', '--help',
120 '-n', '--dry-run',
121 '-q', '--quiet',
122 '-v', '--verbose',
123 '-V', '--version',
124 '--author',
125 '--author-email',
126 '--classifiers',
127 '--contact',
128 '--contact-email',
129 '--description',
Peter Odding6c1e9ef2014-07-14 15:50:31 +0200130 '--egg-base',
Peter Oddinge9144562014-07-12 03:14:55 +0200131 '--fullname',
132 '--help-commands',
133 '--keywords',
134 '--licence',
135 '--license',
136 '--long-description',
137 '--maintainer',
138 '--maintainer-email',
139 '--name',
140 '--no-user-cfg',
141 '--obsoletes',
142 '--platforms',
143 '--provides',
144 '--requires',
145 '--url',
146 'clean',
147 'egg_info',
148 'register',
149 'sdist',
150 'upload',
151 )
Peter Odding97f45302014-07-14 21:40:35 +0200152
Peter Odding6c1e9ef2014-07-14 15:50:31 +0200153 def is_short_option(argument):
154 """Check whether a command line argument is a short option."""
155 return len(argument) >= 2 and argument[0] == '-' and argument[1] != '-'
Peter Odding97f45302014-07-14 21:40:35 +0200156
Peter Odding6c1e9ef2014-07-14 15:50:31 +0200157 def expand_short_options(argument):
158 """Expand combined short options into canonical short options."""
159 return ('-' + char for char in argument[1:])
Peter Odding97f45302014-07-14 21:40:35 +0200160
Peter Odding6c1e9ef2014-07-14 15:50:31 +0200161 def argument_without_setup_requirements(argv, i):
162 """Check whether a command line argument needs setup requirements."""
163 if argv[i] in no_setup_requires_arguments:
164 # Simple case: An argument which is either an option or a command
165 # which doesn't need setup requirements.
166 return True
Peter Odding97f45302014-07-14 21:40:35 +0200167 elif (is_short_option(argv[i]) and
168 all(option in no_setup_requires_arguments
169 for option in expand_short_options(argv[i]))):
Peter Odding6c1e9ef2014-07-14 15:50:31 +0200170 # Not so simple case: Combined short options none of which need
171 # setup requirements.
172 return True
Peter Odding97f45302014-07-14 21:40:35 +0200173 elif argv[i - 1:i] == ['--egg-base']:
Peter Odding6c1e9ef2014-07-14 15:50:31 +0200174 # Tricky case: --egg-info takes an argument which should not make
175 # us use setup_requires (defeating the purpose of this code).
176 return True
177 else:
178 return False
Peter Odding97f45302014-07-14 21:40:35 +0200179
180 if all(argument_without_setup_requirements(argv, i)
181 for i in range(1, len(argv))):
Peter Odding3ae89a52014-07-12 02:06:56 +0200182 return {
183 "cmdclass": {
Paul Kehrer68b3b1e2015-05-19 13:05:21 -0700184 "build": DummyBuild,
185 "install": DummyInstall,
Peter Odding3ae89a52014-07-12 02:06:56 +0200186 "test": DummyPyTest,
187 }
188 }
Peter Oddingc9b83f72014-07-12 00:52:58 +0200189 else:
Paul Kehrer68b3b1e2015-05-19 13:05:21 -0700190 cffi_modules = [
191 "src/_cffi_src/build_openssl.py:ffi",
192 "src/_cffi_src/build_constant_time.py:ffi",
193 "src/_cffi_src/build_padding.py:ffi",
194 ]
Paul Kehrer68b3b1e2015-05-19 13:05:21 -0700195
Peter Oddinge327cf12014-07-12 01:18:50 +0200196 return {
Paul Kehrer4c287d72015-06-08 00:05:53 -0500197 "setup_requires": setup_requirements,
Peter Oddinge327cf12014-07-12 01:18:50 +0200198 "cmdclass": {
Peter Oddinge327cf12014-07-12 01:18:50 +0200199 "test": PyTest,
Paul Kehrer68b3b1e2015-05-19 13:05:21 -0700200 },
201 "cffi_modules": cffi_modules
Peter Oddinge327cf12014-07-12 01:18:50 +0200202 }
Peter Oddingc9b83f72014-07-12 00:52:58 +0200203
204
Peter Odding3ae89a52014-07-12 02:06:56 +0200205setup_requires_error = ("Requested setup command that needs 'setup_requires' "
206 "while command line arguments implied a side effect "
207 "free command or option.")
208
209
Paul Kehrer68b3b1e2015-05-19 13:05:21 -0700210class DummyBuild(build):
Peter Odding3ae89a52014-07-12 02:06:56 +0200211 """
212 This class makes it very obvious when ``keywords_with_side_effects()`` has
213 incorrectly interpreted the command line arguments to ``setup.py build`` as
214 one of the 'side effect free' commands or options.
215 """
216
Peter Oddingdcce0802014-07-12 02:28:13 +0200217 def run(self):
Peter Odding3ae89a52014-07-12 02:06:56 +0200218 raise RuntimeError(setup_requires_error)
219
220
Paul Kehrer68b3b1e2015-05-19 13:05:21 -0700221class DummyInstall(install):
Peter Odding3ae89a52014-07-12 02:06:56 +0200222 """
223 This class makes it very obvious when ``keywords_with_side_effects()`` has
224 incorrectly interpreted the command line arguments to ``setup.py install``
225 as one of the 'side effect free' commands or options.
226 """
227
Peter Oddingdcce0802014-07-12 02:28:13 +0200228 def run(self):
Peter Odding3ae89a52014-07-12 02:06:56 +0200229 raise RuntimeError(setup_requires_error)
230
231
Peter Oddingc9861f92014-07-13 04:17:20 +0200232class DummyPyTest(test):
Peter Odding3ae89a52014-07-12 02:06:56 +0200233 """
234 This class makes it very obvious when ``keywords_with_side_effects()`` has
235 incorrectly interpreted the command line arguments to ``setup.py test`` as
236 one of the 'side effect free' commands or options.
237 """
238
Peter Odding3ae89a52014-07-12 02:06:56 +0200239 def run_tests(self):
240 raise RuntimeError(setup_requires_error)
241
242
Alex Gaynor7630d6c2014-01-03 07:34:43 -0800243with open(os.path.join(base_dir, "README.rst")) as f:
Alex Gaynorf51f2c12014-01-03 07:33:01 -0800244 long_description = f.read()
245
246
Alex Gaynorc62e91f2013-08-06 19:25:52 -0700247setup(
Donald Stufft5f12a1b2013-08-11 16:37:43 -0400248 name=about["__title__"],
249 version=about["__version__"],
250
251 description=about["__summary__"],
Alex Gaynorf51f2c12014-01-03 07:33:01 -0800252 long_description=long_description,
Donald Stufft5f12a1b2013-08-11 16:37:43 -0400253 license=about["__license__"],
254 url=about["__uri__"],
255
256 author=about["__author__"],
257 author_email=about["__email__"],
258
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200259 classifiers=[
Jon Dufresne95820b42018-06-16 18:33:33 -0700260 "Development Status :: 5 - Production/Stable",
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200261 "Intended Audience :: Developers",
262 "License :: OSI Approved :: Apache Software License",
Alex Gaynorabe8bc92014-10-31 19:28:57 -0700263 "License :: OSI Approved :: BSD License",
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200264 "Natural Language :: English",
265 "Operating System :: MacOS :: MacOS X",
266 "Operating System :: POSIX",
267 "Operating System :: POSIX :: BSD",
268 "Operating System :: POSIX :: Linux",
269 "Operating System :: Microsoft :: Windows",
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200270 "Programming Language :: Python",
271 "Programming Language :: Python :: 2",
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200272 "Programming Language :: Python :: 2.7",
273 "Programming Language :: Python :: 3",
Alex Gaynor7f8b2772014-03-17 10:22:41 -0700274 "Programming Language :: Python :: 3.4",
Alex Gaynor1d5805b2015-09-17 20:57:44 -0400275 "Programming Language :: Python :: 3.5",
Alex Gaynor31b5d782016-12-23 12:20:36 -0500276 "Programming Language :: Python :: 3.6",
Paul Kehrer4ee1cb92018-06-27 20:07:14 -0700277 "Programming Language :: Python :: 3.7",
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200278 "Programming Language :: Python :: Implementation :: CPython",
279 "Programming Language :: Python :: Implementation :: PyPy",
280 "Topic :: Security :: Cryptography",
281 ],
Donald Stufft5f12a1b2013-08-11 16:37:43 -0400282
Donald Stufftc62a78c2014-11-07 19:17:08 -0500283 package_dir={"": "src"},
Frazer McLean542ea8e2016-03-26 23:10:23 +0100284 packages=find_packages(where="src", exclude=["_cffi_src", "_cffi_src.*"]),
Alex Gaynore23dd3a2014-08-11 13:51:54 -0700285 include_package_data=True,
Donald Stufft9ebb8ff2013-08-11 17:05:03 -0400286
Alex Gaynor0ed80b42017-12-26 13:04:31 -0500287 python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
288
Alex Gaynor4c41ab02017-08-23 20:33:01 -0400289 install_requires=[
Alex Gaynor4c41ab02017-08-23 20:33:01 -0400290 "asn1crypto >= 0.21.0",
291 "six >= 1.4.1",
Alex Gaynorca2055f2018-04-28 15:31:02 -0400292 ] + setup_requirements,
koobsff0dd1e2014-02-24 21:55:04 +1100293 tests_require=test_requirements,
Alex Gaynor22f7ec52016-01-17 11:41:40 -0500294 extras_require={
Alex Gaynor4c41ab02017-08-23 20:33:01 -0400295 ":python_version < '3'": ["enum34", "ipaddress"],
Alex Gaynor4c41ab02017-08-23 20:33:01 -0400296
Alex Gaynor22f7ec52016-01-17 11:41:40 -0500297 "test": test_requirements,
Paul Kehrere3d2fc12018-03-05 20:50:10 -0400298 "docs": [
Paul Kehrer77002512018-09-14 13:01:12 -0400299 "sphinx >= 1.6.5,!=1.8.0",
Paul Kehrere3d2fc12018-03-05 20:50:10 -0400300 "sphinx_rtd_theme",
301 ],
Paul Kehrerc6c3b6d2016-05-29 00:17:08 -0500302 "docstest": [
Alex Gaynor94176082016-01-17 23:28:05 -0500303 "doc8",
Alex Gaynor0a8bdff2017-07-21 13:57:50 -0400304 "pyenchant >= 1.6.11",
Paul Kehrer6d7b70e2018-12-02 23:50:54 +0800305 "twine >= 1.12.0",
Alex Gaynor30d35ae2017-10-23 19:09:27 -0400306 "sphinxcontrib-spelling >= 4.0.1",
Alex Gaynor94176082016-01-17 23:28:05 -0500307 ],
Paul Kehrerc6c3b6d2016-05-29 00:17:08 -0500308 "pep8test": [
Alex Gaynor94176082016-01-17 23:28:05 -0500309 "flake8",
310 "flake8-import-order",
311 "pep8-naming",
312 ],
Paul Kehrer7e422822018-12-07 11:43:38 +0800313 # This extra is for the U-label support that was deprecated in
314 # cryptography 2.1. If you need this deprecated path install with
315 # pip install cryptography[idna]
316 "idna": [
317 "idna >= 2.1",
318 ]
Alex Gaynor22f7ec52016-01-17 11:41:40 -0500319 },
Donald Stufft5f12a1b2013-08-11 16:37:43 -0400320
321 # for cffi
322 zip_safe=False,
Paul Kehrer68b3b1e2015-05-19 13:05:21 -0700323 ext_package="cryptography.hazmat.bindings",
Peter Odding51ec05f2014-07-12 01:18:35 +0200324 **keywords_with_side_effects(sys.argv)
Alex Gaynorc62e91f2013-08-06 19:25:52 -0700325)