-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
45 lines (39 loc) · 1.43 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
#!/usr/bin/env python
# -----------------------------------------------------------------------------
# This work is licensed under the Creative Commons
# Attribution-NonCommercial-ShareAlike 4.0 International License. To view a
# copy of this license, visit
# http://creativecommons.org/licenses/by-nc-sa/4.0/.
# -----------------------------------------------------------------------------
__version__ = '0.0.0-dev'
from setuptools import find_packages, setup
classes = """
Development Status :: 1 - Planning
Framework :: IPython
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: MacOS :: MacOS X
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: 2.7
Topic :: Scientific/Engineering
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ("An Introduction To Image Processing (INFO-H-500/501) "
"Interactive lessions in bioinformatics.")
setup(name='An-Introduction-To-Image-Processing',
version=__version__,
license='CC BY-NC-SA 4.0',
description=description,
long_description=description,
author='',
author_email='',
maintainer='',
maintainer_email='',
url='',
packages=find_packages(),
install_requires=[],
classifiers=classifiers)