-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.21 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "clickdv"
version = "0.1.0"
description = "GLM linking Poisson click inputs to decision variables"
authors = [
{name = "Brody-Daw Lab"}
]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy>=1.26.0",
"scipy>=1.11.0",
"pandas>=1.3.0",
"matplotlib>=3.4.0",
"seaborn>=0.11.0",
"scikit-learn>=1.0.0",
"statsmodels>=0.12.0",
"tqdm>=4.60.0",
"h5py>=3.1.0",
"pyyaml>=5.4.0",
"jupyter>=1.1.1",
"ipykernel>=6.29.5",
"tables>=3.8.0",
"python-glmnet>=2.6.0",
]
[project.optional-dependencies]
dev = [
"jupyter>=1.0.0",
"ipykernel>=6.0.0",
"pytest>=6.0.0",
"pytest-cov>=3.0.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"