-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
25 lines (23 loc) · 1.11 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
from os import mkdir, stat
from stat import ST_MODE
from distutils.core import setup
setup(name = "keepassc",
version = "1.8.2",
author = "Karsten-Kai König, Scott Hansen",
author_email = "[email protected]",
url = "http://raymontag.github.com/keepassc",
download_url = "https://github.com/raymontag/keepassc/tarball/master",
description = "A password manager that is fully compatible to KeePass v.1.x and KeePassX",
packages = ['keepassc'],
scripts = ['bin/keepassc', 'bin/keepassc-server', 'bin/keepassc-agent'],
install_requires = ['kppy', 'pycryptodomex'],
classifiers = [
'Programming Language :: Python :: 3.3',
'Operating System :: POSIX',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 5 - Production/Stable',
'Environment :: Console :: Curses'],
license = "ISC, MIT",
data_files = [('share/man/man1', ['keepassc.1', 'keepassc-server.1', 'keepassc-agent.1']),
('share/doc/keepassc', ['README.md', 'LICENSE.md', 'CHANGELOG'])],
)