-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
37 lines (28 loc) · 1.08 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
import pathlib
from setuptools import setup, find_packages
setup(
name='android-otp-extractor',
version='1.0.7',
description='Extracts and exports OTP secrets from most Android OTP apps',
long_description=(pathlib.Path(__file__).parent / 'README.md').read_text(),
long_description_content_type='text/markdown',
url='https://github.com/puddly/android-otp-extractor',
author='puddly',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: System :: Archiving :: Backup',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='android otp secret exporting',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.6, <4',
install_requires=['cryptography>=2.0', 'coloredlogs'],
project_urls={
'Bug Reports': 'https://github.com/puddly/android-otp-extractor/issues',
'Source': 'https://github.com/puddly/android-otp-extractor/',
},
)