-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.08 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.08 KB
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
#! /usr/bin/env python
"""
Author: Dario ML
Program: SETUP.PY
Date: Saturday, June 06, 2014
Description: Setup and install TD algorithms.
"""
from distutils.core import setup
setup(name='python-aer',
version='0.1.2',
author="Dario Magliocchetti",
author_email="darioml1911@gmail.com",
url="https://github.com/darioml/pAER-python-aer-lib",
description='Python Address Event Representation (AER) Library',
long_description='This package provides tools required to visulate, manipulate and use address event representational data (.aedat format). ',
package_dir={"paer" : "src"},
packages=["paer"],
license="GPL 2.0",
classifiers=[
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha"
],
install_requires=[
'numpy',
'scipy',
'matplotlib'
]
)