-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (52 loc) · 1.28 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
44
45
46
47
48
49
50
51
52
53
54
55
56
# setup.py
# setup script for aopy
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
install_requires = [
'numpy',
'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',
'remodnav',
]
setuptools.setup(
name="aolab-aopy",
version="0.9.3",
author="aoLab",
author_email="aorsborn@uw.edu",
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,
python_requires='>=3.8',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent"
],
install_requires=install_requires,
)