forked from stjordanis/BitGlitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 999 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 999 Bytes
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
from setuptools import setup, find_namespace_packages
with open("README.md", "r") as openReadMe:
long_description = openReadMe.read()
setup(
name="BitGlitter Python",
version="2.0.0",
author="Mark Michon",
author_email="markkmichon@gmail.com",
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-Python",
packages=find_namespace_packages(),
install_requires=[
"bitstring==3.1.9",
"cryptography==3.4.8",
"ffmpeg-python==0.2.0",
"opencv-python==4.5.3.56",
"Pillow==8.3.2",
"SQLAlchemy==1.4.25"
],
extra_require={"dev": "pytest"},
classifiers=[
"Programming Language :: Python :: 3.9.5",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)