-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
31 lines (29 loc) · 1023 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="rtfraptor",
version="1.0.1",
author="David Cannings",
author_email="david@edeca.net",
description="Dump interesting OLE parts from RTF documents by instrumenting Word",
license="GNU Affero General Public License v3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/edeca/rtfraptor",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': ['rtfraptor=rtfraptor.app:main'],
},
classifiers=[
"Programming Language :: Python :: 2",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Environment :: Win32 (MS Windows)",
"Operating System :: Microsoft :: Windows",
"Development Status :: 4 - Beta",
],
install_requires=[
'winappdbg',
'oletools',
],
)