forked from worldveil/invisible-watermark
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
35 lines (32 loc) · 1021 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
32
33
34
35
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='invisible-watermark-gpu',
version='0.2.3',
author='Will Drevo',
author_email='[email protected]',
description='GPU adaptation for the library for creating and decoding invisible image watermarks',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Stability-AI/invisible-watermark-gpu',
packages=setuptools.find_packages(),
install_requires=[
'opencv-python-headless>=4.8.1.78',
'torch>=2.0.0',
'Pillow>=6.0.0',
'PyWavelets>=1.1.1',
'numpy>=1.17.0',
'pycudwt-multitarget==1.0.5',
'pytest',
],
scripts=['invisible-watermark'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
],
# Python 3.6 tested in Ubuntu 18.04 LTS.
python_requires='>=3.6',
include_package_data=True,
)