-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (57 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
62 lines (57 loc) · 1.31 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
57
58
59
60
61
62
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flybehavior-response"
version = "0.1.2"
description = "CLI and helpers for scoring Drosophila proboscis responses from envelope or raw coordinate data."
authors = [{name = "Cole Hanan", email = "cole.hanan11@gmail.com"}]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.23,<2.0",
"scipy>=1.9,<1.13",
"pandas>=1.5,<3.0",
"scikit-learn==1.4.2",
"matplotlib>=3.6,<3.10",
"typer[all]>=0.9,<1.0",
"joblib>=1.2,<1.6",
"hdbscan>=0.8,<0.9",
"umap-learn>=0.5,<0.6",
"pyyaml>=6.0,<7.0",
"pyarrow>=14.0,<15.0",
"optuna>=3.5,<4.0",
"plotly>=5.15,<6.0",
"xgboost>=2.0,<3.0"
]
[project.urls]
Homepage = "https://notReal.com"
[project.scripts]
flypca = "flypca.cli:app"
flybehavior-response = "flybehavior_response.cli:main"
[tool.hatch.build.targets.wheel]
packages = [
"src/flybehavior_response",
"src/flypca",
]
[tool.hatch.build.targets.sdist]
include = [
"src/flybehavior_response",
"src/flypca",
"src/fly_behavior",
"src/unsup",
"src/stats",
"config",
"notebooks",
"scripts",
"docs",
"README.md",
"pyproject.toml",
"requirements.txt",
"Makefile",
]