forked from manuelaguadomtz/pythreshold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (44 loc) · 1.3 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
# Get the long description from the README file
with open('README.md') as f:
readme = f.read()
setup(
# Package name
name='pythreshold',
# Package version
version='0.3.1',
# Included packages
packages=find_packages(),
# Package author information
author=u'BSc. Manuel Aguado Martínez',
author_email='[email protected]',
# Repository URL
url='https://github.com/manuelaguadomtz/pythreshold',
entry_points={
'console_scripts': [
'pythreshold = pythreshold.main:test_thresholds_main',
],
},
# Package requirements
install_requires=[
'numpy',
'scipy',
'scikit-image',
'matplotlib',
'opencv-python'
],
# Package description
description='Numpy/Scipy implementations of state-of-the-art image'
' thresholding algorithms',
long_description=readme,
long_description_content_type='text/markdown',
keywords='thresholding entropy',
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License'
],
)