forked from pmneila/morphsnakes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.29 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
# -*- encoding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from morphsnakes import __version_str__
setup(
name="morphsnakes",
version=__version_str__,
description="Morphological Snakes",
author="Pablo Márquez Neila",
author_email="[email protected]",
url="https://github.com/pmneila/morphsnakes",
license="BSD 3-clause",
# packages=["morphsnakes"],
py_modules=["morphsnakes"],
requires=['numpy', 'scipy'],
long_description="""
The Morphological Snakes are a family of methods for image-guided
evolution of curves and surfaces represented as a level-set of an embedding
function. They have application in several Computer Vision areas,
such as image segmentation and tracking.
""",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Image Recognition",
],
)