-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
28 lines (26 loc) · 878 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
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as openReadMe:
long_description = openReadMe.read()
setup(
name="BitGlitter",
version="1.0.1",
author="Mark Michon",
author_email="[email protected]",
description="⚡ Embed data payloads inside of ordinary images or video, through high performance 2-D matrix codes.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MarkMichon1/BitGlitter",
packages=find_namespace_packages(),
install_requires=[
'bitstring',
'cryptography',
'ffmpeg-python',
'opencv-python',
'Pillow',
],
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)