forked from AntoineGrimaldi/hotsline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (18 loc) · 757 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
__author__ = "(c) Antoine Grimaldi & Laurent Perrinet INT - CNRS (2020-)"
from setuptools import setup, find_packages
NAME ='hots'
import hots
VERSION = "1.0"
setup(
name=NAME,
version=VERSION,
package_dir={'hots': NAME},
packages=find_packages(),
author='Antoine Grimaldi, Institut de Neurosciences de la Timone (CNRS/Aix-Marseille Universite)',
author_email='antoine.grimaldi@univ-amu.fr',
url = 'https://github.com/AntoineGrimaldi/hotsline',
description=' This is a collection of python scripts to do Pattern recognition with an event-based stream',
long_description=open('README.md').read(),
license='GNU General Public License v3.0',
#keywords=('Event based Pattern Recognition', 'Hierarchical model'),
)