forked from GingerGeneste/bring2lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 745 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 745 Bytes
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
from setuptools import setup
setup(name='bring2lite',
package_dir={
'bring2lite': 'bring2lite',
'bring2lite.classes': 'bring2lite/classes',
},
packages=['bring2lite', 'bring2lite.classes'],
entry_points={
'console_scripts': ['bring2lite=bring2lite.main:main']
},
version='0.1',
description='extract deleted content out of sqlite databases',
url='',
author='Christian Meng,'
'Harald Baier',
author_email='bring2lite@gmail.com',
license='MIT',
install_requires=[
'tqdm',
'sqlparse',
'colorama',
'pyqt5',
],
hiddenimports=[
'PyQt5.sip'
],
zip_safe=True)