-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
33 lines (30 loc) · 1.44 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
NAME = "LogGabor"
version = "0.3.1" # << to change in Makefile
setup(
name = NAME,
version = version,
packages = find_packages(exclude=['contrib', 'docs', 'tests']),
author = "Laurent Perrinet INT - CNRS",
author_email = "Laurent.Perrinet@univ-amu.fr",
description = "A log-Gabor pyramid is an oriented multiresolution scheme for images inspired by biology.",
long_description=open("README.md").read(),
license = "GPLv2",
install_requires=['numpy', 'matplotlib', 'SLIP'],
keywords = ('computational neuroscience', 'simulation', 'analysis', 'visualization', 'biologically-inspired', 'computer vision'),
url = 'https://github.com/bicv/' + NAME, # use the URL to the github repo
download_url = 'https://github.com/bicv/' + NAME + '/tarball/' + version,
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)