summaryrefslogtreecommitdiff
path: root/setup.py
blob: f86d76ff6707ec89ca1eb18ae392443e14accefd (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
"""
Setup file for leap.bitmask
"""
from setuptools import setup, find_packages
import platform

import versioneer


# This requirements list is curated by hand, and
# needs to be updated every time that requirements.pip
# changes.
# Note that here we can specify ranges.

required = [
    'twisted>=14.0.0',
    'cryptography',
    'zope.interface',
    'service-identity',
    'colorama',
    'srp',
    'python-daemon',
    'certifi',
    'leap.common',
]

if platform.system() == "Windows":
    required.append(['pypiwin32'])
    required.append(['appdirs'])
    required.append(['python-gnupg'])

mail_deps = ['leap.soledad[client]', 'gnupg']
pix_deps = ['leap.pixelated', 'leap.pixelated_www']
gui_deps = ['vext.pyqt5', 'leap.bitmask_js']
tor_deps = ['txtorcon']
extras = {
    'mail': mail_deps,
    'pixelated': pix_deps,
    'gui': gui_deps,
    'backend': mail_deps,
    'all': mail_deps + gui_deps + pix_deps,
    'tor': tor_deps
}


trove_classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: End Users/Desktop",
    ("License :: OSI Approved :: GNU General "
     "Public License v3 or later (GPLv3+)"),
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Programming Language :: Python :: 2.7",
    "Topic :: Communications",
    'Topic :: Communications :: Email',
    "Topic :: Security",
    'Topic :: Security :: Cryptography',
    "Topic :: Utilities"
]

VERSION = versioneer.get_version()
DOWNLOAD_BASE = ('https://github.com/leapcode/bitmask-dev/'
                 'archive/%s.tar.gz')
DOWNLOAD_URL = DOWNLOAD_BASE % VERSION


# Entry points
gui_launcher = 'bitmask=leap.bitmask.gui.app:start_app'
anonvpn = 'bitmask_anonvpn=leap.bitmask.gui.anonvpn:start_app'
chrome_launcher = 'bitmask_chromium=leap.bitmask.chrome.chromeapp:start_app'
bitmask_cli = 'bitmaskctl=leap.bitmask.cli.bitmask_cli:main'
bitmask_helpers = 'bitmask_helpers=leap.bitmask.vpn.helpers:main'
bitmaskd = 'bitmaskd=leap.bitmask.core.launcher:run_bitmaskd'


setup(
    name='leap.bitmask',
    version=VERSION,
    cmdclass=versioneer.get_cmdclass(),
    url='https://leap.se/',
    download_url=DOWNLOAD_URL,
    license='GPLv3+',
    author='The LEAP Encryption Access Project',
    author_email='info@leap.se',
    maintainer='Kali Kaneko',
    maintainer_email='kali@leap.se',
    description=("The Internet Encryption Toolkit: "
                 "Encrypted Internet Proxy and Encrypted Mail."),
    long_description=open('README.rst').read(),
    classifiers=trove_classifiers,
    namespace_packages=['leap'],
    package_dir={'': 'src'},
    package_data={'': ['*.pem', '*.bin', '*.json',
                       'bitmask-root', '*.policy']},
    packages=find_packages('src'),
    include_package_data=True,
    zip_safe=False,
    entry_points={
        'console_scripts': [
            gui_launcher,
            anonvpn,
            chrome_launcher,
            bitmask_cli,
            bitmaskd,
            bitmask_helpers]
    },
    install_requires=required,
    extras_require=extras,
)