1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
try:
from setuptools import setup, find_packages
except ImportError:
#FIXME old?
#use distribute_setup instead??
#http://packages.python.org/distribute/setuptools.html#using-setuptools-without-bundling-it
import ez_setup
#XXX move ez_setup somewhere else?
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import os
# get version from somewhere else
version = '0.1'
setup_root = os.path.dirname(__file__)
sys.path.insert(0, os.path.join(setup_root, "src"))
setup(
name='leap-client',
package_dir={"": "src"},
version=version,
description="the internet encryption toolkit",
long_description="""\
""",
classifiers=[], # Get strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
# XXX FIXME DEPS
# deps: pyqt
# test_deps: nose
# build_deps: pyqt-utils
keywords='leap, client, qt, encryption',
author='leap project',
author_email='info@leap.se',
url='http://leap.se',
license='GPL',
packages=find_packages(
'src',
exclude=['ez_setup', 'setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
data_files=[
("share/man/man1",
["docs/leap.1"]),
("share/polkit-1/actions",
["setup/linux/polkit/net.openvpn.gui.leap.policy"])
],
platforms="all",
scripts=["setup/scripts/leap"],
entry_points="""
# -*- Entry points: -*-
""",
)
|