-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
70 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.3.0" | ||
__version__ = "0.3.1" | ||
from .core import * | ||
from .io import * | ||
from .process import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "pynapple" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "PYthon Neural Analysis Package Pour Laboratoires d’Excellence" | ||
readme = "README.md" | ||
authors = [{ name = "Guillaume Viejo", email = "[email protected]" }] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#!/usr/bin/env python | ||
|
||
"""The setup script.""" | ||
|
||
from setuptools import setup, find_packages | ||
|
||
with open('README.md') as readme_file: | ||
readme = readme_file.read() | ||
|
||
with open('docs/HISTORY.md') as history_file: | ||
history = history_file.read() | ||
|
||
requirements = [ | ||
'pandas>=1.0.3', | ||
'numba>=0.46.0', | ||
'numpy>=1.17.4', | ||
'scipy>=1.3.2', | ||
'pynwb', | ||
'tabulate', | ||
'pyqt5', | ||
'pyqtgraph', | ||
'h5py', | ||
'tifffile', | ||
'zarr' | ||
] | ||
|
||
test_requirements = [ | ||
'pytest', | ||
'isort', | ||
'pip-tools', | ||
'pytest', | ||
'flake8', | ||
'coverage' | ||
] | ||
|
||
setup( | ||
author="Guillaume Viejo", | ||
author_email='[email protected]', | ||
python_requires='>=3.8', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
], | ||
description="PYthon Neural Analysis Package Pour Laboratoires d’Excellence", | ||
install_requires=requirements, | ||
license="GNU General Public License v3", | ||
# long_description='pynapple is a Python library for analysing neurophysiological data. It allows to handle time series and epochs but also to use generic functions for neuroscience such as tuning curves and cross-correlogram of spikes. It is heavily based on neuroseries.' | ||
# + '\n\n' + history, | ||
long_description=readme, | ||
include_package_data=True, | ||
keywords='neuroscience', | ||
name='pynapple', | ||
packages=find_packages(include=['pynapple', 'pynapple.*']), | ||
test_suite='tests', | ||
tests_require=test_requirements, | ||
url='https://github.com/PeyracheLab/pynapple', | ||
version='v0.3.1', | ||
zip_safe=False, | ||
long_description_content_type='text/markdown', | ||
download_url='https://github.com/PeyracheLab/pynapple/archive/refs/tags/v0.3.1.tar.gz' | ||
) |