forked from bannsec/stegoVeritas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 2.15 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
45
46
47
48
49
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
import os, sys, ast
here = os.path.abspath(os.path.dirname(__file__))
long_description = "See website for more info."
# Importing during setup causes dependency issues
with open('stegoveritas/version.py') as f:
exec(f.read())
# TODO: Get 'six' package up to newest version. Right now py010parser is forcing it to 1.10.0, which isn't great.
# NOTE: Removing pfp package for now, until I need it. If I do end up needing it, i will need to have my own versions of both pfp and py010parser
# Specifically, I need to modify py010parser to not be stuck with an old "six" version (which is causing issues), then updated pfp to point to my version of py010parser.
# https://github.com/d0c-s4vage/py010parser/pull/19
setup(
name='stegoveritas',
version=version,
description='General Steganography detection tool.',
long_description=long_description,
url='https://github.com/bannsec/stegoVeritas',
author='Michael Bann',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
'Environment :: Console'
],
keywords='steg stego steganography stegoveritas',
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'dist']),
install_requires=['pillow', 'numpy', 'python-magic', 'prettytable', 'exifread', 'python-xmp-toolkit', 'stegoveritas-binwalk', 'pypng', 'apng'],
extras_require={
'dev': ['ipython','twine','pytest','python-coveralls','coverage','pytest-cov','pytest-xdist','sphinxcontrib-napoleon', 'sphinx_rtd_theme','sphinx-autodoc-typehints', 'pyOpenSSL'],
},
entry_points={
'console_scripts': [
'stegoveritas = stegoveritas.stegoveritas:main',
'stegoveritas_install_deps = stegoveritas.install_deps:main',
'stegoveritas_hide_lsb = stegoveritas.hide_lsb:main',
],
},
)