-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
32 lines (29 loc) · 1.04 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt', 'r', encoding='utf-8') as f:
requirements = [x.strip() for x in f.readlines()]
setuptools.setup(
name="keepwn",
version="0.4.0",
author="Julien Bedel - @d3lb3_",
author_email="[email protected]",
description="A python tool to automate KeePass discovery and secret extraction.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Orange-Cyberdefense/keepwn",
packages=['keepwn', 'keepwn.core', 'keepwn.utils'],
package_data={'keepwn': ['keepwn/']},
include_package_data=True,
license="GPL3",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=requirements,
entry_points={
'console_scripts': ['KeePwn=keepwn.__main__:main']
}
)