-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·61 lines (55 loc) · 2.04 KB
/
setup.py
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
#! /usr/bin/env python
# Copyright (C) 2015 "nyov" <nyov@nexnode.net>
# Copyright (C) 2015 Sebastian Pipping <sebastian@pipping.org>
#
# Licensed under MPL 1.1 / GPL 2.0 or later / LGPL 2.1 or later
from os.path import dirname, join
from setuptools import find_packages, setup
from mozilla_password_decrypt.version import VERSION_STR
description = 'Mozilla password decryptor'
long_description = description
setup_args = {
'name': 'mozilla-password-decrypt',
'version': VERSION_STR,
'url': 'https://github.com/hartwork/mozilla-password-decrypt',
'description': description,
'long_description': long_description,
'keywords': 'mozilla passwords signons sqlite libnss3',
'author': 'mozilla-passwords developers',
'maintainer': 'Sebastian Pipping',
'maintainer_email': 'sebastian@pipping.org',
'license': 'MPL 1.1/GPL 2.0/LGPL 2.1',
'packages': find_packages(),
'include_package_data': True,
'zip_safe': False, # for setuptools
'entry_points': {
'console_scripts': [
'mozilla-password-decrypt = mozilla_password_decrypt:main'
],
},
'classifiers': [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: C',
'Topic :: Database',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Recovery Tools',
],
'install_requires': [
],
}
try:
from local_setup import local_setup_args
setup_args.update(local_setup_args)
except ImportError:
pass
setup(**setup_args)