-
Notifications
You must be signed in to change notification settings - Fork 181
/
setup.py
32 lines (31 loc) · 1.05 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
#!/usr/bin/env python
from __future__ import print_function
from setuptools import setup, find_packages
import sys
setup(
name="BlindWatermark",
version="0.1.0",
author="Fire-Keeper",
author_email="[email protected]",
description="using invisible watermark to protect creator's intellectual property",
# long_description=open("README.rst").read(),
license="MIT",
url="https://github.com/fire-keeper/BlindWatermark",
packages=['BlindWatermark',],
install_requires=[
'numpy',
'opencv'
],
# classifiers=[
# "Environment :: Web Environment",
# "Intended Audience :: Developers",
# "Operating System :: OS Independent",
# "Topic :: Utilities",
# "Topic :: Software Development :: Libraries :: Python Modules",
# "Programming Language :: Python",
# "Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3.5",
# "Programming Language :: Python :: 3.6",
# "Programming Language :: Python :: 3.7",
# ],
)