blob: df29b04212f1a7cf3a2d84a66941b181950247cc [file] [log] [blame]
Alex Gaynorbfc06bc2013-08-06 19:36:19 -07001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
10# implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
Alex Gaynorf51f2c12014-01-03 07:33:01 -080013import os
koobs23690dd2014-02-24 22:26:23 +110014import sys
Alex Gaynor9a00f052014-01-02 13:09:34 -080015from distutils.command.build import build
16
Donald Stufft9ebb8ff2013-08-11 17:05:03 -040017from setuptools import setup, find_packages
koobsff0dd1e2014-02-24 21:55:04 +110018from setuptools.command.test import test as TestCommand
Donald Stufft446a4572013-08-11 17:38:13 -040019
Alex Gaynor7630d6c2014-01-03 07:34:43 -080020base_dir = os.path.dirname(__file__)
21
Donald Stufft5f12a1b2013-08-11 16:37:43 -040022about = {}
Alex Gaynor7630d6c2014-01-03 07:34:43 -080023with open(os.path.join(base_dir, "cryptography", "__about__.py")) as f:
24 exec(f.read(), about)
Donald Stufft5f12a1b2013-08-11 16:37:43 -040025
26
Paul Kehrer7fcaa372014-01-10 23:39:58 -060027CFFI_DEPENDENCY = "cffi>=0.8"
Paul Kehrerc0242552013-09-10 18:54:13 -050028SIX_DEPENDENCY = "six>=1.4.1"
Donald Stufft5f12a1b2013-08-11 16:37:43 -040029
Alex Gaynor91f119e2014-01-02 13:12:59 -080030requirements = [
Donald Stufft5f12a1b2013-08-11 16:37:43 -040031 CFFI_DEPENDENCY,
Paul Kehrerc0242552013-09-10 18:54:13 -050032 SIX_DEPENDENCY
Donald Stufft5f12a1b2013-08-11 16:37:43 -040033]
34
koobsff0dd1e2014-02-24 21:55:04 +110035test_requirements = [
36 "pytest",
37 "pretend",
38 "iso8601"
39]
40
Alex Gaynor9a00f052014-01-02 13:09:34 -080041
Paul Kehrer5b6ce2a2014-02-24 20:16:10 -060042class CFFIBuild(build):
Alex Gaynor49697512014-01-03 15:08:45 -080043 """
44 This class exists, instead of just providing ``ext_modules=[...]`` directly
45 in ``setup()`` because importing cryptography requires we have several
46 packages installed first.
47
48 By doing the imports here we ensure that packages listed in
49 ``setup_requires`` are already installed.
50 """
51
Alex Gaynor9a00f052014-01-02 13:09:34 -080052 def finalize_options(self):
Alex Gaynordefc7f02014-01-19 23:44:31 -060053 from cryptography.hazmat.bindings.commoncrypto.binding import (
54 Binding as CommonCryptoBinding
55 )
56 from cryptography.hazmat.bindings.openssl.binding import (
57 Binding as OpenSSLBinding
58 )
Alex Gaynor9a00f052014-01-02 13:09:34 -080059 from cryptography.hazmat.primitives import constant_time, padding
60
61 self.distribution.ext_modules = [
Alex Gaynordefc7f02014-01-19 23:44:31 -060062 OpenSSLBinding().ffi.verifier.get_extension(),
Alex Gaynor9a00f052014-01-02 13:09:34 -080063 constant_time._ffi.verifier.get_extension(),
64 padding._ffi.verifier.get_extension()
65 ]
Alex Gaynordefc7f02014-01-19 23:44:31 -060066 if CommonCryptoBinding.is_available():
67 self.distribution.ext_modules.append(
68 CommonCryptoBinding().ffi.verifier.get_extension()
69 )
Alex Gaynor50f233e2014-01-06 11:10:40 -080070
Alex Gaynor9a00f052014-01-02 13:09:34 -080071 build.finalize_options(self)
72
koobs92a4cdb2014-02-24 22:13:17 +110073
koobsff0dd1e2014-02-24 21:55:04 +110074class PyTest(TestCommand):
75 def finalize_options(self):
76 TestCommand.finalize_options(self)
77 self.test_args = []
78 self.test_suite = True
koobs23690dd2014-02-24 22:26:23 +110079
koobsff0dd1e2014-02-24 21:55:04 +110080 def run_tests(self):
koobs92a4cdb2014-02-24 22:13:17 +110081 # Import here because in module scope the eggs are not loaded.
koobsff0dd1e2014-02-24 21:55:04 +110082 import pytest
83 errno = pytest.main(self.test_args)
84 sys.exit(errno)
85
Alex Gaynor9a00f052014-01-02 13:09:34 -080086
Alex Gaynor7630d6c2014-01-03 07:34:43 -080087with open(os.path.join(base_dir, "README.rst")) as f:
Alex Gaynorf51f2c12014-01-03 07:33:01 -080088 long_description = f.read()
89
90
Alex Gaynorc62e91f2013-08-06 19:25:52 -070091setup(
Donald Stufft5f12a1b2013-08-11 16:37:43 -040092 name=about["__title__"],
93 version=about["__version__"],
94
95 description=about["__summary__"],
Alex Gaynorf51f2c12014-01-03 07:33:01 -080096 long_description=long_description,
Donald Stufft5f12a1b2013-08-11 16:37:43 -040097 license=about["__license__"],
98 url=about["__uri__"],
99
100 author=about["__author__"],
101 author_email=about["__email__"],
102
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200103 classifiers=[
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200104 "Intended Audience :: Developers",
105 "License :: OSI Approved :: Apache Software License",
106 "Natural Language :: English",
107 "Operating System :: MacOS :: MacOS X",
108 "Operating System :: POSIX",
109 "Operating System :: POSIX :: BSD",
110 "Operating System :: POSIX :: Linux",
111 "Operating System :: Microsoft :: Windows",
Christian Heimesf83ed1d2013-08-10 23:28:29 +0200112 "Programming Language :: Python",
113 "Programming Language :: Python :: 2",
114 "Programming Language :: Python :: 2.6",
115 "Programming Language :: Python :: 2.7",
116 "Programming Language :: Python :: 3",
117 "Programming Language :: Python :: 3.2",
118 "Programming Language :: Python :: 3.3",
119 "Programming Language :: Python :: Implementation :: CPython",
120 "Programming Language :: Python :: Implementation :: PyPy",
121 "Topic :: Security :: Cryptography",
122 ],
Donald Stufft5f12a1b2013-08-11 16:37:43 -0400123
Donald Stufft9ebb8ff2013-08-11 17:05:03 -0400124 packages=find_packages(exclude=["tests", "tests.*"]),
125
Alex Gaynor91f119e2014-01-02 13:12:59 -0800126 install_requires=requirements,
127 setup_requires=requirements,
koobsff0dd1e2014-02-24 21:55:04 +1100128 tests_require=test_requirements,
Donald Stufft5f12a1b2013-08-11 16:37:43 -0400129
130 # for cffi
131 zip_safe=False,
Alex Gaynor9a00f052014-01-02 13:09:34 -0800132 ext_package="cryptography",
133 cmdclass={
Paul Kehrer5b6ce2a2014-02-24 20:16:10 -0600134 "build": CFFIBuild,
koobsff0dd1e2014-02-24 21:55:04 +1100135 "test": PyTest,
Alex Gaynor9a00f052014-01-02 13:09:34 -0800136 }
Alex Gaynorc62e91f2013-08-06 19:25:52 -0700137)