1 # -*- coding: utf-8 -*-
3 # Copyright (C) 2013 LEAP
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 from setuptools import (
25 install_requirements = [
33 tests_requirements = [
40 name='leap.keymanager',
42 url='https://leap.se/',
44 description='LEAP\'s Key Manager',
45 author='The LEAP Encryption Access Project',
46 author_email='info@leap.se',
48 "The Key Manager handles all types of keys to allow for "
49 "point-to-point encryption between parties communicating through "
50 "LEAP infrastructure."
52 namespace_packages=["leap"],
53 packages=find_packages('src', exclude=['leap.keymanager.tests']),
54 package_dir={'': 'src'},
55 test_suite='leap.keymanager.tests',
56 install_requires=install_requirements,
57 tests_require=tests_requirements,