forked from darioml/python-aer
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (41 loc) · 1.39 KB
/
setup.py
File metadata and controls
43 lines (41 loc) · 1.39 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
36
37
38
39
40
41
42
43
#! /usr/bin/env python
"""
Author: Dario ML, bdevans
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.3',
author="Dario Magliocchetti",
author_email="darioml1911@gmail.com",
url="https://github.com/bio-modelling/py-aer",
description='Python Address Event Representation (AER) Library',
long_description='''This package provides tools required to visualise,
manipulate and use address event representational data
(.aedat format). ''',
packages=["pyaer"],
license="GPL 2.0",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"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',
'Pillow' # N.B. This cannot coexist with PIL
]
)