-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 817 Bytes
/
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
from distutils.core import setup
import os
from distutils.core import setup
version = '0.1'
README = os.path.join(os.path.dirname(__file__), 'README')
long_description = open(README).read()
setup(name='srm',
version=version,
description=("Statistical Region Merging in Python"),
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='image segmentation',
author='Olivier Schwander',
author_email='[email protected]',
url='http://www.lix.polytechnique.fr/~schwander/python-srm',
license='BSD',
packages=['SRM'],
)