Alex Gaynor | 5951f46 | 2014-11-16 09:08:42 -0800 | [diff] [blame] | 1 | # This file is dual licensed under the terms of the Apache License, Version |
| 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository |
| 3 | # for complete details. |
Alex Gaynor | c37feed | 2014-03-08 08:32:56 -0800 | [diff] [blame] | 4 | |
| 5 | from __future__ import absolute_import, division, print_function |
| 6 | |
Alex Gaynor | f51f2c1 | 2014-01-03 07:33:01 -0800 | [diff] [blame] | 7 | import os |
Terry Chia | 361545d | 2014-07-28 12:06:54 +0800 | [diff] [blame] | 8 | import platform |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 9 | import subprocess |
Alex Stapleton | 707b008 | 2014-04-20 22:24:41 +0100 | [diff] [blame] | 10 | import sys |
Alex Stapleton | 4b610cc | 2014-03-22 08:49:35 +0000 | [diff] [blame] | 11 | from distutils.command.build import build |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 12 | |
| 13 | import pkg_resources |
Alex Gaynor | 9a00f05 | 2014-01-02 13:09:34 -0800 | [diff] [blame] | 14 | |
Paul Kehrer | afc1ccd | 2014-03-19 11:49:32 -0400 | [diff] [blame] | 15 | from setuptools import find_packages, setup |
Sascha Peilicke | c549205 | 2014-03-31 17:59:37 +0200 | [diff] [blame] | 16 | from setuptools.command.install import install |
Alex Gaynor | acac6a6 | 2014-03-04 15:24:03 -0800 | [diff] [blame] | 17 | from setuptools.command.test import test |
Donald Stufft | 446a457 | 2013-08-11 17:38:13 -0400 | [diff] [blame] | 18 | |
Paul Kehrer | afc1ccd | 2014-03-19 11:49:32 -0400 | [diff] [blame] | 19 | |
Alex Gaynor | 7630d6c | 2014-01-03 07:34:43 -0800 | [diff] [blame] | 20 | base_dir = os.path.dirname(__file__) |
Donald Stufft | c62a78c | 2014-11-07 19:17:08 -0500 | [diff] [blame] | 21 | src_dir = os.path.join(base_dir, "src") |
| 22 | |
| 23 | # When executing the setup.py, we need to be able to import ourselves, this |
| 24 | # means that we need to add the src/ directory to the sys.path. |
| 25 | sys.path.insert(0, src_dir) |
Alex Gaynor | 7630d6c | 2014-01-03 07:34:43 -0800 | [diff] [blame] | 26 | |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 27 | about = {} |
Donald Stufft | c62a78c | 2014-11-07 19:17:08 -0500 | [diff] [blame] | 28 | with open(os.path.join(src_dir, "cryptography", "__about__.py")) as f: |
Alex Gaynor | 7630d6c | 2014-01-03 07:34:43 -0800 | [diff] [blame] | 29 | exec(f.read(), about) |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 30 | |
| 31 | |
Terry Chia | da5dca8 | 2014-07-27 12:27:52 +0800 | [diff] [blame] | 32 | SETUPTOOLS_DEPENDENCY = "setuptools" |
Paul Kehrer | 7fcaa37 | 2014-01-10 23:39:58 -0600 | [diff] [blame] | 33 | CFFI_DEPENDENCY = "cffi>=0.8" |
Paul Kehrer | c024255 | 2013-09-10 18:54:13 -0500 | [diff] [blame] | 34 | SIX_DEPENDENCY = "six>=1.4.1" |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 35 | VECTORS_DEPENDENCY = "cryptography_vectors=={0}".format(about['__version__']) |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 36 | |
Alex Gaynor | 91f119e | 2014-01-02 13:12:59 -0800 | [diff] [blame] | 37 | requirements = [ |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 38 | CFFI_DEPENDENCY, |
Terry Chia | da5dca8 | 2014-07-27 12:27:52 +0800 | [diff] [blame] | 39 | SIX_DEPENDENCY, |
| 40 | SETUPTOOLS_DEPENDENCY |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 41 | ] |
| 42 | |
Paul Kehrer | 7ad18bc | 2014-03-26 13:13:38 -0600 | [diff] [blame] | 43 | # If you add a new dep here you probably need to add it in the tox.ini as well |
koobs | ff0dd1e | 2014-02-24 21:55:04 +1100 | [diff] [blame] | 44 | test_requirements = [ |
| 45 | "pytest", |
Paul Kehrer | d3e3df9 | 2014-04-30 11:13:17 -0500 | [diff] [blame] | 46 | "pyasn1", |
koobs | ff0dd1e | 2014-02-24 21:55:04 +1100 | [diff] [blame] | 47 | "pretend", |
Alex Stapleton | 0bd20e2 | 2014-03-14 19:58:07 +0000 | [diff] [blame] | 48 | "iso8601", |
koobs | ff0dd1e | 2014-02-24 21:55:04 +1100 | [diff] [blame] | 49 | ] |
| 50 | |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 51 | # If there's no vectors locally that probably means we are in a tarball and |
| 52 | # need to go and get the matching vectors package from PyPi |
| 53 | if not os.path.exists(os.path.join(base_dir, "vectors/setup.py")): |
| 54 | test_requirements.append(VECTORS_DEPENDENCY) |
| 55 | |
Alex Gaynor | 9a00f05 | 2014-01-02 13:09:34 -0800 | [diff] [blame] | 56 | |
Terry Chia | 361545d | 2014-07-28 12:06:54 +0800 | [diff] [blame] | 57 | def cc_is_available(): |
| 58 | return sys.platform == "darwin" and list(map( |
| 59 | int, platform.mac_ver()[0].split("."))) >= [10, 8, 0] |
| 60 | |
| 61 | |
| 62 | backends = [ |
| 63 | "openssl = cryptography.hazmat.backends.openssl:backend" |
| 64 | ] |
| 65 | |
| 66 | if cc_is_available(): |
| 67 | backends.append( |
| 68 | "commoncrypto = cryptography.hazmat.backends.commoncrypto:backend", |
| 69 | ) |
| 70 | |
| 71 | |
Sascha Peilicke | c549205 | 2014-03-31 17:59:37 +0200 | [diff] [blame] | 72 | def get_ext_modules(): |
| 73 | from cryptography.hazmat.bindings.commoncrypto.binding import ( |
| 74 | Binding as CommonCryptoBinding |
| 75 | ) |
| 76 | from cryptography.hazmat.bindings.openssl.binding import ( |
| 77 | Binding as OpenSSLBinding |
| 78 | ) |
| 79 | from cryptography.hazmat.primitives import constant_time, padding |
| 80 | |
| 81 | ext_modules = [ |
Donald Stufft | d1b70f3 | 2014-11-07 17:48:49 -0500 | [diff] [blame] | 82 | OpenSSLBinding.ffi.verifier.get_extension(), |
Sascha Peilicke | c549205 | 2014-03-31 17:59:37 +0200 | [diff] [blame] | 83 | constant_time._ffi.verifier.get_extension(), |
| 84 | padding._ffi.verifier.get_extension() |
| 85 | ] |
Terry Chia | 361545d | 2014-07-28 12:06:54 +0800 | [diff] [blame] | 86 | if cc_is_available(): |
Donald Stufft | d1b70f3 | 2014-11-07 17:48:49 -0500 | [diff] [blame] | 87 | ext_modules.append(CommonCryptoBinding.ffi.verifier.get_extension()) |
Sascha Peilicke | c549205 | 2014-03-31 17:59:37 +0200 | [diff] [blame] | 88 | return ext_modules |
| 89 | |
| 90 | |
Paul Kehrer | 5b6ce2a | 2014-02-24 20:16:10 -0600 | [diff] [blame] | 91 | class CFFIBuild(build): |
Alex Gaynor | 4969751 | 2014-01-03 15:08:45 -0800 | [diff] [blame] | 92 | """ |
| 93 | This class exists, instead of just providing ``ext_modules=[...]`` directly |
| 94 | in ``setup()`` because importing cryptography requires we have several |
| 95 | packages installed first. |
| 96 | |
| 97 | By doing the imports here we ensure that packages listed in |
| 98 | ``setup_requires`` are already installed. |
| 99 | """ |
| 100 | |
Alex Gaynor | 9a00f05 | 2014-01-02 13:09:34 -0800 | [diff] [blame] | 101 | def finalize_options(self): |
Sascha Peilicke | c549205 | 2014-03-31 17:59:37 +0200 | [diff] [blame] | 102 | self.distribution.ext_modules = get_ext_modules() |
Alex Gaynor | 9a00f05 | 2014-01-02 13:09:34 -0800 | [diff] [blame] | 103 | build.finalize_options(self) |
| 104 | |
koobs | 92a4cdb | 2014-02-24 22:13:17 +1100 | [diff] [blame] | 105 | |
Sascha Peilicke | c549205 | 2014-03-31 17:59:37 +0200 | [diff] [blame] | 106 | class CFFIInstall(install): |
| 107 | """ |
| 108 | As a consequence of CFFIBuild and it's late addition of ext_modules, we |
| 109 | need the equivalent for the ``install`` command to install into platlib |
| 110 | install-dir rather than purelib. |
| 111 | """ |
| 112 | |
| 113 | def finalize_options(self): |
| 114 | self.distribution.ext_modules = get_ext_modules() |
| 115 | install.finalize_options(self) |
| 116 | |
| 117 | |
Alex Gaynor | acac6a6 | 2014-03-04 15:24:03 -0800 | [diff] [blame] | 118 | class PyTest(test): |
koobs | ff0dd1e | 2014-02-24 21:55:04 +1100 | [diff] [blame] | 119 | def finalize_options(self): |
Alex Gaynor | 6858cd4 | 2014-03-04 15:33:13 -0800 | [diff] [blame] | 120 | test.finalize_options(self) |
koobs | ff0dd1e | 2014-02-24 21:55:04 +1100 | [diff] [blame] | 121 | self.test_args = [] |
| 122 | self.test_suite = True |
koobs | 0667180 | 2014-02-24 22:33:07 +1100 | [diff] [blame] | 123 | |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 124 | # This means there's a vectors/ folder with the package in here. |
| 125 | # cd into it, install the vectors package and then refresh sys.path |
| 126 | if VECTORS_DEPENDENCY not in test_requirements: |
Alex Gaynor | d9f9b75 | 2014-07-11 10:18:24 -0700 | [diff] [blame] | 127 | subprocess.check_call( |
| 128 | [sys.executable, "setup.py", "install"], cwd="vectors" |
| 129 | ) |
Alex Stapleton | a39a319 | 2014-03-14 20:03:12 +0000 | [diff] [blame] | 130 | pkg_resources.get_distribution("cryptography_vectors").activate() |
| 131 | |
koobs | ff0dd1e | 2014-02-24 21:55:04 +1100 | [diff] [blame] | 132 | def run_tests(self): |
koobs | 92a4cdb | 2014-02-24 22:13:17 +1100 | [diff] [blame] | 133 | # Import here because in module scope the eggs are not loaded. |
koobs | ff0dd1e | 2014-02-24 21:55:04 +1100 | [diff] [blame] | 134 | import pytest |
| 135 | errno = pytest.main(self.test_args) |
| 136 | sys.exit(errno) |
| 137 | |
Alex Gaynor | 9a00f05 | 2014-01-02 13:09:34 -0800 | [diff] [blame] | 138 | |
Peter Odding | 51ec05f | 2014-07-12 01:18:35 +0200 | [diff] [blame] | 139 | def keywords_with_side_effects(argv): |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 140 | """ |
| 141 | Get a dictionary with setup keywords that (can) have side effects. |
| 142 | |
Peter Odding | 51ec05f | 2014-07-12 01:18:35 +0200 | [diff] [blame] | 143 | :param argv: A list of strings with command line arguments. |
| 144 | :returns: A dictionary with keyword arguments for the ``setup()`` function. |
| 145 | |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 146 | This setup.py script uses the setuptools 'setup_requires' feature because |
| 147 | this is required by the cffi package to compile extension modules. The |
| 148 | purpose of ``keywords_with_side_effects()`` is to avoid triggering the cffi |
Peter Odding | e914456 | 2014-07-12 03:14:55 +0200 | [diff] [blame] | 149 | build process as a result of setup.py invocations that don't need the cffi |
| 150 | module to be built (setup.py serves the dual purpose of exposing package |
| 151 | metadata). |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 152 | |
Peter Odding | e914456 | 2014-07-12 03:14:55 +0200 | [diff] [blame] | 153 | All of the options listed by ``python setup.py --help`` that print |
| 154 | information should be recognized here. The commands ``clean``, |
| 155 | ``egg_info``, ``register``, ``sdist`` and ``upload`` are also recognized. |
| 156 | Any combination of these options and commands is also supported. |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 157 | |
Peter Odding | e914456 | 2014-07-12 03:14:55 +0200 | [diff] [blame] | 158 | This function was originally based on the `setup.py script`_ of SciPy (see |
| 159 | also the discussion in `pip issue #25`_). |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 160 | |
| 161 | .. _pip issue #25: https://github.com/pypa/pip/issues/25 |
Peter Odding | 63ce5df | 2014-07-12 01:56:37 +0200 | [diff] [blame] | 162 | .. _setup.py script: https://github.com/scipy/scipy/blob/master/setup.py |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 163 | """ |
Peter Odding | e914456 | 2014-07-12 03:14:55 +0200 | [diff] [blame] | 164 | no_setup_requires_arguments = ( |
| 165 | '-h', '--help', |
| 166 | '-n', '--dry-run', |
| 167 | '-q', '--quiet', |
| 168 | '-v', '--verbose', |
| 169 | '-V', '--version', |
| 170 | '--author', |
| 171 | '--author-email', |
| 172 | '--classifiers', |
| 173 | '--contact', |
| 174 | '--contact-email', |
| 175 | '--description', |
Peter Odding | 6c1e9ef | 2014-07-14 15:50:31 +0200 | [diff] [blame] | 176 | '--egg-base', |
Peter Odding | e914456 | 2014-07-12 03:14:55 +0200 | [diff] [blame] | 177 | '--fullname', |
| 178 | '--help-commands', |
| 179 | '--keywords', |
| 180 | '--licence', |
| 181 | '--license', |
| 182 | '--long-description', |
| 183 | '--maintainer', |
| 184 | '--maintainer-email', |
| 185 | '--name', |
| 186 | '--no-user-cfg', |
| 187 | '--obsoletes', |
| 188 | '--platforms', |
| 189 | '--provides', |
| 190 | '--requires', |
| 191 | '--url', |
| 192 | 'clean', |
| 193 | 'egg_info', |
| 194 | 'register', |
| 195 | 'sdist', |
| 196 | 'upload', |
| 197 | ) |
Peter Odding | 97f4530 | 2014-07-14 21:40:35 +0200 | [diff] [blame] | 198 | |
Peter Odding | 6c1e9ef | 2014-07-14 15:50:31 +0200 | [diff] [blame] | 199 | def is_short_option(argument): |
| 200 | """Check whether a command line argument is a short option.""" |
| 201 | return len(argument) >= 2 and argument[0] == '-' and argument[1] != '-' |
Peter Odding | 97f4530 | 2014-07-14 21:40:35 +0200 | [diff] [blame] | 202 | |
Peter Odding | 6c1e9ef | 2014-07-14 15:50:31 +0200 | [diff] [blame] | 203 | def expand_short_options(argument): |
| 204 | """Expand combined short options into canonical short options.""" |
| 205 | return ('-' + char for char in argument[1:]) |
Peter Odding | 97f4530 | 2014-07-14 21:40:35 +0200 | [diff] [blame] | 206 | |
Peter Odding | 6c1e9ef | 2014-07-14 15:50:31 +0200 | [diff] [blame] | 207 | def argument_without_setup_requirements(argv, i): |
| 208 | """Check whether a command line argument needs setup requirements.""" |
| 209 | if argv[i] in no_setup_requires_arguments: |
| 210 | # Simple case: An argument which is either an option or a command |
| 211 | # which doesn't need setup requirements. |
| 212 | return True |
Peter Odding | 97f4530 | 2014-07-14 21:40:35 +0200 | [diff] [blame] | 213 | elif (is_short_option(argv[i]) and |
| 214 | all(option in no_setup_requires_arguments |
| 215 | for option in expand_short_options(argv[i]))): |
Peter Odding | 6c1e9ef | 2014-07-14 15:50:31 +0200 | [diff] [blame] | 216 | # Not so simple case: Combined short options none of which need |
| 217 | # setup requirements. |
| 218 | return True |
Peter Odding | 97f4530 | 2014-07-14 21:40:35 +0200 | [diff] [blame] | 219 | elif argv[i - 1:i] == ['--egg-base']: |
Peter Odding | 6c1e9ef | 2014-07-14 15:50:31 +0200 | [diff] [blame] | 220 | # Tricky case: --egg-info takes an argument which should not make |
| 221 | # us use setup_requires (defeating the purpose of this code). |
| 222 | return True |
| 223 | else: |
| 224 | return False |
Peter Odding | 97f4530 | 2014-07-14 21:40:35 +0200 | [diff] [blame] | 225 | |
| 226 | if all(argument_without_setup_requirements(argv, i) |
| 227 | for i in range(1, len(argv))): |
Peter Odding | 3ae89a5 | 2014-07-12 02:06:56 +0200 | [diff] [blame] | 228 | return { |
| 229 | "cmdclass": { |
| 230 | "build": DummyCFFIBuild, |
| 231 | "install": DummyCFFIInstall, |
| 232 | "test": DummyPyTest, |
| 233 | } |
| 234 | } |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 235 | else: |
Peter Odding | e327cf1 | 2014-07-12 01:18:50 +0200 | [diff] [blame] | 236 | return { |
| 237 | "setup_requires": requirements, |
| 238 | "cmdclass": { |
| 239 | "build": CFFIBuild, |
| 240 | "install": CFFIInstall, |
| 241 | "test": PyTest, |
| 242 | } |
| 243 | } |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 244 | |
| 245 | |
Peter Odding | 3ae89a5 | 2014-07-12 02:06:56 +0200 | [diff] [blame] | 246 | setup_requires_error = ("Requested setup command that needs 'setup_requires' " |
| 247 | "while command line arguments implied a side effect " |
| 248 | "free command or option.") |
| 249 | |
| 250 | |
Peter Odding | c9861f9 | 2014-07-13 04:17:20 +0200 | [diff] [blame] | 251 | class DummyCFFIBuild(build): |
Peter Odding | 3ae89a5 | 2014-07-12 02:06:56 +0200 | [diff] [blame] | 252 | """ |
| 253 | This class makes it very obvious when ``keywords_with_side_effects()`` has |
| 254 | incorrectly interpreted the command line arguments to ``setup.py build`` as |
| 255 | one of the 'side effect free' commands or options. |
| 256 | """ |
| 257 | |
Peter Odding | dcce080 | 2014-07-12 02:28:13 +0200 | [diff] [blame] | 258 | def run(self): |
Peter Odding | 3ae89a5 | 2014-07-12 02:06:56 +0200 | [diff] [blame] | 259 | raise RuntimeError(setup_requires_error) |
| 260 | |
| 261 | |
Peter Odding | c9861f9 | 2014-07-13 04:17:20 +0200 | [diff] [blame] | 262 | class DummyCFFIInstall(install): |
Peter Odding | 3ae89a5 | 2014-07-12 02:06:56 +0200 | [diff] [blame] | 263 | """ |
| 264 | This class makes it very obvious when ``keywords_with_side_effects()`` has |
| 265 | incorrectly interpreted the command line arguments to ``setup.py install`` |
| 266 | as one of the 'side effect free' commands or options. |
| 267 | """ |
| 268 | |
Peter Odding | dcce080 | 2014-07-12 02:28:13 +0200 | [diff] [blame] | 269 | def run(self): |
Peter Odding | 3ae89a5 | 2014-07-12 02:06:56 +0200 | [diff] [blame] | 270 | raise RuntimeError(setup_requires_error) |
| 271 | |
| 272 | |
Peter Odding | c9861f9 | 2014-07-13 04:17:20 +0200 | [diff] [blame] | 273 | class DummyPyTest(test): |
Peter Odding | 3ae89a5 | 2014-07-12 02:06:56 +0200 | [diff] [blame] | 274 | """ |
| 275 | This class makes it very obvious when ``keywords_with_side_effects()`` has |
| 276 | incorrectly interpreted the command line arguments to ``setup.py test`` as |
| 277 | one of the 'side effect free' commands or options. |
| 278 | """ |
| 279 | |
Peter Odding | 3ae89a5 | 2014-07-12 02:06:56 +0200 | [diff] [blame] | 280 | def run_tests(self): |
| 281 | raise RuntimeError(setup_requires_error) |
| 282 | |
| 283 | |
Alex Gaynor | 7630d6c | 2014-01-03 07:34:43 -0800 | [diff] [blame] | 284 | with open(os.path.join(base_dir, "README.rst")) as f: |
Alex Gaynor | f51f2c1 | 2014-01-03 07:33:01 -0800 | [diff] [blame] | 285 | long_description = f.read() |
| 286 | |
| 287 | |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 288 | setup( |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 289 | name=about["__title__"], |
| 290 | version=about["__version__"], |
| 291 | |
| 292 | description=about["__summary__"], |
Alex Gaynor | f51f2c1 | 2014-01-03 07:33:01 -0800 | [diff] [blame] | 293 | long_description=long_description, |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 294 | license=about["__license__"], |
| 295 | url=about["__uri__"], |
| 296 | |
| 297 | author=about["__author__"], |
| 298 | author_email=about["__email__"], |
| 299 | |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 300 | classifiers=[ |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 301 | "Intended Audience :: Developers", |
| 302 | "License :: OSI Approved :: Apache Software License", |
Alex Gaynor | abe8bc9 | 2014-10-31 19:28:57 -0700 | [diff] [blame] | 303 | "License :: OSI Approved :: BSD License", |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 304 | "Natural Language :: English", |
| 305 | "Operating System :: MacOS :: MacOS X", |
| 306 | "Operating System :: POSIX", |
| 307 | "Operating System :: POSIX :: BSD", |
| 308 | "Operating System :: POSIX :: Linux", |
| 309 | "Operating System :: Microsoft :: Windows", |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 310 | "Programming Language :: Python", |
| 311 | "Programming Language :: Python :: 2", |
| 312 | "Programming Language :: Python :: 2.6", |
| 313 | "Programming Language :: Python :: 2.7", |
| 314 | "Programming Language :: Python :: 3", |
| 315 | "Programming Language :: Python :: 3.2", |
| 316 | "Programming Language :: Python :: 3.3", |
Alex Gaynor | 7f8b277 | 2014-03-17 10:22:41 -0700 | [diff] [blame] | 317 | "Programming Language :: Python :: 3.4", |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 318 | "Programming Language :: Python :: Implementation :: CPython", |
| 319 | "Programming Language :: Python :: Implementation :: PyPy", |
| 320 | "Topic :: Security :: Cryptography", |
| 321 | ], |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 322 | |
Donald Stufft | c62a78c | 2014-11-07 19:17:08 -0500 | [diff] [blame] | 323 | package_dir={"": "src"}, |
| 324 | packages=find_packages(where="src", exclude=["tests", "tests.*"]), |
Alex Gaynor | e23dd3a | 2014-08-11 13:51:54 -0700 | [diff] [blame] | 325 | include_package_data=True, |
Donald Stufft | 9ebb8ff | 2013-08-11 17:05:03 -0400 | [diff] [blame] | 326 | |
Alex Gaynor | 91f119e | 2014-01-02 13:12:59 -0800 | [diff] [blame] | 327 | install_requires=requirements, |
koobs | ff0dd1e | 2014-02-24 21:55:04 +1100 | [diff] [blame] | 328 | tests_require=test_requirements, |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 329 | |
| 330 | # for cffi |
| 331 | zip_safe=False, |
Alex Gaynor | 9a00f05 | 2014-01-02 13:09:34 -0800 | [diff] [blame] | 332 | ext_package="cryptography", |
Terry Chia | da5dca8 | 2014-07-27 12:27:52 +0800 | [diff] [blame] | 333 | entry_points={ |
Terry Chia | 361545d | 2014-07-28 12:06:54 +0800 | [diff] [blame] | 334 | "cryptography.backends": backends, |
Peter Odding | c9b83f7 | 2014-07-12 00:52:58 +0200 | [diff] [blame] | 335 | }, |
Peter Odding | 51ec05f | 2014-07-12 01:18:35 +0200 | [diff] [blame] | 336 | **keywords_with_side_effects(sys.argv) |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 337 | ) |