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
36 #"https://protobuf-socket-rpc.googlecode.com/files/protobuf.socketrpc-1.3.2.tar.gz#egg=protobuf.socketrpc"
39 tests_requirements = [
44 "Development Status :: 3 - Alpha",
45 "Intended Audience :: Developers",
46 ("License :: OSI Approved :: GNU General "
47 "Public License v3 or later (GPLv3+)"),
48 "Operating System :: OS Independent",
49 "Programming Language :: Python",
50 "Programming Language :: Python :: 2.6",
51 "Programming Language :: Python :: 2.7",
52 "Topic :: Communications",
59 # If you change version, do it also in
60 # src/leap/common/__init__.py
62 url='https://leap.se/',
64 author='The LEAP Encryption Access Project',
65 author_email='info@leap.se',
66 description='Common files used by the LEAP project.',
68 "Common files used by the LEAP Client project."
70 classifiers=trove_classifiers,
71 namespace_packages=["leap"],
72 package_dir={'': 'src'},
73 # For now, we do not exclude tests because of the circular dependency
74 # between leap.common and leap.soledad.
75 #packages=find_packages('src', exclude=['leap.common.tests']),
76 packages=find_packages('src'),
77 test_suite='leap.common.tests',
78 install_requires=requirements,
79 #dependency_links=dependency_links,
80 tests_require=tests_requirements,
81 include_package_data=True