-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 951 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 951 Bytes
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
from setuptools import setup, find_packages
import AERzip
with open('README.md') as readme_file:
README = readme_file.read()
#with open('HISTORY.md') as history_file:
# HISTORY = history_file.read()
setup(
name='AERzip',
version=AERzip.__version__,
description='Useful tools to compress and decompress AEDAT files in Python',
# long_description_content_type="text/markdown",
# long_description=README + '\n\n' + HISTORY,
license='GPL-3.0',
packages=find_packages(),
author='Alvaro Ayuso Martinez',
author_email='alv.correo@gmail.com',
keywords=['AER', 'Events', 'Spikes', 'AEDAT', 'Compression', 'Decompression', 'Utils',
'Neuroscience', 'Neuromorphic', 'Cochlea', 'Retina', 'jAER'],
url='https://github.com/alvaroy96/AERzip',
download_url='https://pypi.org/project/AERzip/',
install_requires=[
'pyNAVIS>=1.2.5',
'matplotlib>=3.4.3',
'numpy'
]
)