This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
45 lines (42 loc) · 1.45 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
#!/usr/bin/env python
from distutils.core import setup
README = open('README.md').read()
try:
VERSION = open('VERSION').read().strip()
except IOError:
VERSION = 'dev'
setup(
name='kdbxpasswordpwned',
version=VERSION,
description='Check KeePass passwords against https://haveibeenpwned.com/Passwords',
long_description_content_type='text/markdown',
long_description=README,
author='Filipe Pina',
author_email='fopina@skmobi.com',
url='https://github.com/fopina/kdbxpasswordpwned',
py_modules=['kdbxpasswordpwned'],
install_requires=[
'requests',
'pykeepass==3.0.2',
],
entry_points={
'console_scripts': ['kdbxpasswordpwned=kdbxpasswordpwned:main']
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords=['keepass', 'hibp', 'password', 'data', 'breach', 'leak']
)