-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (37 loc) · 1.55 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
__author__ = "(c) Victor Boutin & Laurent Perrinet INT - CNRS"
import os
from setuptools import setup, find_packages
NAME ='HOTS'
import HOTS
VERSION = "0.1"
setup(
name=NAME,
version=VERSION,
# package source directory
package_dir={'HOTS': NAME},
packages=find_packages(),#exclude=['contrib', 'docs', 'probe']),
author='Victor Boutin, Institut de Neurosciences de la Timone (CNRS/Aix-Marseille Université)',
description=' This is a collection of python scripts to do Pattern recognition with of event-based stream',
long_description=open('README.md').read(),
license='LICENSE.txt',
keywords=('Event based Pattern Recognition', 'Hierarchical model'),
#url = 'https://github.com/VictorBoutin/' + NAME, # use the URL to the github repo
#download_url = 'https://github.com/VictorBoutin/' + 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.6',
],
extras_require={
'html' : [
'notebook',
'matplotlib'
'jupyter>=1.0']
},
)