-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (50 loc) · 1.96 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
50
51
52
53
54
55
import pathlib
from setuptools import setup
import sys
if sys.version_info < (3,6):
print("as4pgc requires Python 3.6 or higher please upgrade")
sys.exit(1)
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
__version__ = "1.1.6"
# This call to setup() does all the work
setup(
name="as4pgc",
version=__version__,
description = "Audio Steganography: compress, encrypt and hide a secret file inside an audio file (MP3, WAV, OGG, FLAC, ..)",
long_description=README,
long_description_content_type="text/markdown",
url="https://www.codeproject.com/Articles/5313626/Audio-Steganography-for-Pretty-Good-Concealing-AS4",
author="Clark Fieseln",
author_email="",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
"Topic :: Security",
],
packages=["as4pgc"],
include_package_data=True,
install_requires=['SoundFile','matplotlib','dataclasses','cryptography>=3.4.7','numpy','scipy','bitarray','tinytag','simpleaudio'],
dependency_links=['https://www.ffmpeg.org/'],
keywords=['steganography','stego','audio','hide','cryptography','encryption','compression','security','cybersecurity','mp3','flac','ogg','wav','windows','linux'],
entry_points={
"console_scripts": [
"as4pgc=as4pgc.AS4PGC:main",
]
},
project_urls={ # Optional
'Source': 'https://github.com/ClarkFieseln/as4pgc',
},
)