-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.09 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
# see: https://packaging.python.org/tutorials/packaging-projects/
from setuptools import setup, find_packages
with open('README.md') as fp:
long_description = fp.read()
setup(
name = 'pykuwahara',
version = '0.3.1',
author = 'J. Melka',
author_email="yoch.melka@gmail.com",
description = 'Kuwahara filter in python',
long_description=long_description,
long_description_content_type="text/markdown",
url = 'https://github.com/yoch/pykuwahara',
license = 'GPL3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Image Processing',
],
package_dir={"": "src"},
packages=find_packages(where="src"),
#python_requires=">=3.6",
install_requires=['numpy', 'opencv-contrib-python'],
tests_require=['pytest'],
)