-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
38 lines (36 loc) · 1.57 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
NAME = "LogGabor"
import LogGabor
VERSION = LogGabor.__version__ # << to change in __init__.py
setup(
name = NAME,
version = VERSION,
packages = find_packages(exclude=['contrib', 'docs', 'tests']),
author = "Laurent Perrinet INT - CNRS",
author_email = "[email protected]",
description = "A log-Gabor pyramid is an oriented multiresolution scheme for images inspired by biology.",
license = "GPLv3",
install_requires=['SLIP'],
extras_require={
'html' : [
'vispy',
'matplotlib'
'jupyter>=1.0']
},
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',
],
)