Alex Gaynor | bfc06bc | 2013-08-06 19:36:19 -0700 | [diff] [blame] | 1 | # 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 Gaynor | f51f2c1 | 2014-01-03 07:33:01 -0800 | [diff] [blame] | 13 | import os |
| 14 | |
Donald Stufft | 9ebb8ff | 2013-08-11 17:05:03 -0400 | [diff] [blame] | 15 | from setuptools import setup, find_packages |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 16 | |
Donald Stufft | 446a457 | 2013-08-11 17:38:13 -0400 | [diff] [blame] | 17 | |
Alex Gaynor | 7630d6c | 2014-01-03 07:34:43 -0800 | [diff] [blame] | 18 | base_dir = os.path.dirname(__file__) |
| 19 | |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 20 | about = {} |
Alex Gaynor | 7630d6c | 2014-01-03 07:34:43 -0800 | [diff] [blame] | 21 | with open(os.path.join(base_dir, "cryptography", "__about__.py")) as f: |
| 22 | exec(f.read(), about) |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 23 | |
| 24 | |
| 25 | CFFI_DEPENDENCY = "cffi>=0.6" |
Paul Kehrer | c024255 | 2013-09-10 18:54:13 -0500 | [diff] [blame] | 26 | SIX_DEPENDENCY = "six>=1.4.1" |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 27 | |
| 28 | install_requires = [ |
| 29 | CFFI_DEPENDENCY, |
Paul Kehrer | c024255 | 2013-09-10 18:54:13 -0500 | [diff] [blame] | 30 | SIX_DEPENDENCY |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 31 | ] |
| 32 | |
| 33 | setup_requires = [ |
| 34 | CFFI_DEPENDENCY, |
| 35 | ] |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 36 | |
Alex Gaynor | 7630d6c | 2014-01-03 07:34:43 -0800 | [diff] [blame] | 37 | with open(os.path.join(base_dir, "README.rst")) as f: |
Alex Gaynor | f51f2c1 | 2014-01-03 07:33:01 -0800 | [diff] [blame] | 38 | long_description = f.read() |
| 39 | |
| 40 | |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 41 | setup( |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 42 | name=about["__title__"], |
| 43 | version=about["__version__"], |
| 44 | |
| 45 | description=about["__summary__"], |
Alex Gaynor | f51f2c1 | 2014-01-03 07:33:01 -0800 | [diff] [blame] | 46 | long_description=long_description, |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 47 | license=about["__license__"], |
| 48 | url=about["__uri__"], |
| 49 | |
| 50 | author=about["__author__"], |
| 51 | author_email=about["__email__"], |
| 52 | |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 53 | classifiers=[ |
| 54 | "Development Status :: 2 - Pre-Alpha", |
| 55 | "Intended Audience :: Developers", |
| 56 | "License :: OSI Approved :: Apache Software License", |
| 57 | "Natural Language :: English", |
| 58 | "Operating System :: MacOS :: MacOS X", |
| 59 | "Operating System :: POSIX", |
| 60 | "Operating System :: POSIX :: BSD", |
| 61 | "Operating System :: POSIX :: Linux", |
| 62 | "Operating System :: Microsoft :: Windows", |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 63 | "Programming Language :: Python", |
| 64 | "Programming Language :: Python :: 2", |
| 65 | "Programming Language :: Python :: 2.6", |
| 66 | "Programming Language :: Python :: 2.7", |
| 67 | "Programming Language :: Python :: 3", |
| 68 | "Programming Language :: Python :: 3.2", |
| 69 | "Programming Language :: Python :: 3.3", |
| 70 | "Programming Language :: Python :: Implementation :: CPython", |
| 71 | "Programming Language :: Python :: Implementation :: PyPy", |
| 72 | "Topic :: Security :: Cryptography", |
| 73 | ], |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 74 | |
Donald Stufft | 9ebb8ff | 2013-08-11 17:05:03 -0400 | [diff] [blame] | 75 | packages=find_packages(exclude=["tests", "tests.*"]), |
| 76 | |
Donald Stufft | bac187d | 2013-08-10 15:43:51 -0400 | [diff] [blame] | 77 | install_requires=install_requires, |
Donald Stufft | 5f12a1b | 2013-08-11 16:37:43 -0400 | [diff] [blame] | 78 | setup_requires=setup_requires, |
| 79 | |
| 80 | # for cffi |
| 81 | zip_safe=False, |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 82 | ) |