-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (45 loc) · 1017 Bytes
/
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
# setup.py
# setup script for aopy
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
install_requires = [
'numpy<2.0',
'xarray',
'pandas',
'psutil',
'h5py',
'tables',
'scikit-learn>=1.0',
'statsmodels',
'nitime',
'xlrd',
'openpyxl',
'matplotlib>=3.9',
'scipy',
'PyWavelets',
'Pillow',
'pyyaml',
'tqdm',
'open-ephys-python-tools',
'aolab-bmi3d>=1.0',
'sympy',
'ibllib',
'seaborn>=0.13.2'
]
setuptools.setup(
name="aolab-aopy",
version="0.8.1",
author="aoLab",
author_email="[email protected]",
description="python code repository for aoLab @UW",
long_description=long_description,
url="https://github.com/aolabNeuro/analyze",
packages=setuptools.find_namespace_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
install_requires=install_requires,
)