-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 816 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 816 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
31
from setuptools import find_packages, setup
setup(
name="HuggingMouse",
version="0.3.1",
description="Data analysis library for Allen Brain Observatory data",
author="Maria Kesa",
author_email="mariarosekesa@gmail.com",
url="https://github.com/mariakesa/HuggingMouse",
install_requires=[
"allensdk @ git+https://github.com/AllenInstitute/AllenSDK.git",
"scikit-learn>=1.2",
"torch>=2.1",
"pandas>=2.2,<3",
"numpy>=1.26,<3",
"transformers>=4.40,<5",
"plotly>=5.9",
],
extras_require={
"agents": [
"smolagents>=1.7.0",
],
"dev": [
"pytest>=8",
"black>=24",
"ruff>=0.5",
],
},
packages=find_packages("src"),
package_dir={"": "src"},
)