blob: fe23f30279b7b040670ea80cbf0422cd41c940a9 [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.
13
Alex Gaynorc62e91f2013-08-06 19:25:52 -070014from setuptools import setup
Alex Gaynorc62e91f2013-08-06 19:25:52 -070015
16setup(
17 name="cryptography",
Christian Heimesf83ed1d2013-08-10 23:28:29 +020018 description="cryptography is a package designed to expose cryptographic "
19 "primitives and recipes to Python developers.",
Christian Heimesb55f9262013-08-11 15:09:21 +020020 license="Apache License, Version 2.0",
21 url="https://github.com/alex/cryptography",
Christian Heimes913bcb72013-08-11 15:35:40 +020022 # for cffi
23 zip_safe=False,
Christian Heimesb55f9262013-08-11 15:09:21 +020024 setup_requires=["cffi>=0.6"],
Christian Heimesf83ed1d2013-08-10 23:28:29 +020025 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 Heimesb55f9262013-08-11 15:09:21 +020035 #"Programming Language :: cffi",
Christian Heimesf83ed1d2013-08-10 23:28:29 +020036 "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 Gaynorc62e91f2013-08-06 19:25:52 -070047)