generated from IMMM-SFA/metarepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 969 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "toolkit"
description = "supporting functions for dataset generartion and machine learning"
readme = "README.md"
version = "0.0.1"
authors = [
{ name = "Kirk Bonney", email = "[email protected]" },
]
maintainers = [
{ name = "Kirk Bonney", email = "[email protected]" },
]
requires-python = ">=3.8"
dependencies = [
"numpy==1.26",
"scipy",
"pandas==2.2.0",
"matplotlib==3.8.2",
"torch==2.2.1",
"hmmlearn==0.3.0",
"optuna==4.0.0",
"h5py",
"seaborn==0.13.1",
"pysal",
"esda",
"pyyaml"
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"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",
]