-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (42 loc) · 1.36 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
"""
Author: Amged Wageh
Email: amged_wageh@outlook.com
LinkedIn: https://www.linkedin.com/in/amgedwageh/
"""
from setuptools import setup, find_packages
setup(
name='drivefs_sleuth',
version='1.2.0',
description='The ultimate Google Drive File Stream Investigator!',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Amged Wageh',
author_email='amged_wageh@outlook.com',
url='https://github.com/AmgdGocha/DriveFS-Sleuth',
packages=find_packages(),
install_requires=[
'Jinja2~=3.1.2',
'bbpb',
],
entry_points={
'console_scripts': [
'drivefs-sleuth=drivefs_sleuth.executor:execute',
],
},
license='Eclipse Public License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Security',
'Operating System :: OS Independent',
],
include_package_data=True,
package_data={
'drivefs_sleuth': ['html_resources/*.html'],
},
)