mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 21:23:23 +08:00
60 lines
2.1 KiB
Python
60 lines
2.1 KiB
Python
#! /usr/bin/env python
|
|
|
|
descr = """Image Processing SciKit
|
|
|
|
Image processing algorithms for SciPy, including IO, morphology, filtering,
|
|
warping, color manipulation, object detection, etc.
|
|
|
|
Please refer to the online documentation at
|
|
http://stefanv.github.com/scikits.image
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
DISTNAME = 'scikits.image'
|
|
DESCRIPTION = 'Image processing routines for SciPy'
|
|
LONG_DESCRIPTION = descr
|
|
MAINTAINER = 'Stefan van der Walt',
|
|
MAINTAINER_EMAIL = 'stefan@sun.ac.za',
|
|
URL = 'http://stefanv.github.com/scikits.image'
|
|
LICENSE = 'Modified BSD'
|
|
DOWNLOAD_URL = 'http://github.com/stefanv/scikits.image'
|
|
VERSION = '0.1'
|
|
|
|
import setuptools
|
|
from numpy.distutils.core import setup
|
|
|
|
def configuration(parent_package='', top_path=None, package_name=DISTNAME):
|
|
if os.path.exists('MANIFEST'): os.remove('MANIFEST')
|
|
|
|
from numpy.distutils.misc_util import Configuration
|
|
config = Configuration(package_name, parent_package, top_path,
|
|
version = VERSION,
|
|
maintainer = MAINTAINER,
|
|
maintainer_email = MAINTAINER_EMAIL,
|
|
description = DESCRIPTION,
|
|
license = LICENSE,
|
|
url = URL,
|
|
download_url = DOWNLOAD_URL,
|
|
long_description = LONG_DESCRIPTION)
|
|
|
|
return config
|
|
|
|
if __name__ == "__main__":
|
|
setup(configuration = configuration,
|
|
install_requires = 'numpy',
|
|
namespace_packages = ['scikits'],
|
|
packages = setuptools.find_packages(),
|
|
include_package_data = True,
|
|
#test_suite="tester", # for python setup.py test
|
|
zip_safe = True, # the package can run out of an .egg file
|
|
classifiers =
|
|
[ 'Development Status :: 1 - Planning',
|
|
'Environment :: Console',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Science/Research',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Topic :: Scientific/Engineering'])
|
|
|