forked from pynapple-org/pynapple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (59 loc) · 1.97 KB
/
setup.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_namespace_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>=2.0.0',
'tabulate',
'h5py',
'rich'
]
test_requirements = [
'pytest',
'isort',
'pip-tools',
'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 :: MIT License',
'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="MIT License",
# 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_namespace_packages(
include=['pynapple', 'pynapple.*'],
exclude=['tests']
),
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/pynapple-org/pynapple',
version='v0.6.0',
zip_safe=False,
long_description_content_type='text/markdown',
download_url='https://github.com/pynapple-org/pynapple/archive/refs/tags/v0.6.0.tar.gz'
)