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. |
| 13 | |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 14 | from setuptools import setup |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 15 | |
| 16 | setup( |
| 17 | name="cryptography", |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 18 | description="cryptography is a package designed to expose cryptographic " |
| 19 | "primitives and recipes to Python developers.", |
Christian Heimes | b55f926 | 2013-08-11 15:09:21 +0200 | [diff] [blame] | 20 | license="Apache License, Version 2.0", |
| 21 | url="https://github.com/alex/cryptography", |
Christian Heimes | 913bcb7 | 2013-08-11 15:35:40 +0200 | [diff] [blame] | 22 | # for cffi |
| 23 | zip_safe=False, |
Christian Heimes | b55f926 | 2013-08-11 15:09:21 +0200 | [diff] [blame] | 24 | setup_requires=["cffi>=0.6"], |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 25 | classifiers=[ |
| 26 | "Development Status :: 2 - Pre-Alpha", |
| 27 | "Intended Audience :: Developers", |
| 28 | "License :: OSI Approved :: Apache Software License", |
| 29 | "Natural Language :: English", |
| 30 | "Operating System :: MacOS :: MacOS X", |
| 31 | "Operating System :: POSIX", |
| 32 | "Operating System :: POSIX :: BSD", |
| 33 | "Operating System :: POSIX :: Linux", |
| 34 | "Operating System :: Microsoft :: Windows", |
Christian Heimes | b55f926 | 2013-08-11 15:09:21 +0200 | [diff] [blame] | 35 | #"Programming Language :: cffi", |
Christian Heimes | f83ed1d | 2013-08-10 23:28:29 +0200 | [diff] [blame] | 36 | "Programming Language :: Python", |
| 37 | "Programming Language :: Python :: 2", |
| 38 | "Programming Language :: Python :: 2.6", |
| 39 | "Programming Language :: Python :: 2.7", |
| 40 | "Programming Language :: Python :: 3", |
| 41 | "Programming Language :: Python :: 3.2", |
| 42 | "Programming Language :: Python :: 3.3", |
| 43 | "Programming Language :: Python :: Implementation :: CPython", |
| 44 | "Programming Language :: Python :: Implementation :: PyPy", |
| 45 | "Topic :: Security :: Cryptography", |
| 46 | ], |
Alex Gaynor | c62e91f | 2013-08-06 19:25:52 -0700 | [diff] [blame] | 47 | ) |