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/>.
18 setup file for leap.common
20 from setuptools import setup, find_packages
22 # XXX parse pkg/requirements.pip
32 # XXX this link is only for py2.6???
33 # we need to get this packaged or included
34 "https://protobuf-socket-rpc.googlecode.com/files/protobuf.socketrpc-1.3.2-py2.6.egg#egg=protobuf.socketrpc",
38 # XXX add classifiers, docs
43 url='https://leap.se/',
45 author='The LEAP Encryption Access Project',
46 author_email='info@leap.se',
47 description='Common files used by the LEAP Client project.',
49 "Common files used by the LEAP Client project."
51 namespace_packages=["leap"],
52 package_dir={'': 'src'},
53 packages=find_packages('src', exclude=['leap.common.tests']),
54 test_suite='leap.common.tests',
55 install_requires=requirements,
56 dependency_links=dependency_links,