-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
29 lines (27 loc) · 988 Bytes
/
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
from setuptools import setup, Extension
import sys
if sys.version.startswith("2"):
print >>sys.stderr, "QuicKeepass is only for python3 => pip3 install quickeepass"
sys.exit(1)
setup(name='QuicKeepass',
version='1.1',
author='@chaignc',
author_email='[email protected]',
url='https://github.com/nongiach/QuicKeepass',
packages=['quickeepass'],
py_modules=['quickeepass'],
description = 'Efficiently autotype your password from keepass on i3 using rofi ',
entry_points = {
'console_scripts': [
'quickeepass = quickeepass:main',
],
},
install_requires=[
'pykeepass',
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords = ['keepass', 'rofi', 'password', 'quick', 'manager', 'autotype', 'autofill']
)