-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 845 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sourcerer"
version = "0.1.0"
description = "Sample-based Maximum Entropy Source Distribution Estimation"
authors = [
{ name = "Julius Vetter" },
{ name = "Guy Moss" }
]
requires-python = ">=3.8.0"
readme = "README.md"
keywords = ["maximum entropy", "source distribution", "machine learning"]
dependencies = [
"numpy",
"torch",
"matplotlib",
"scikit-learn",
"hydra-core",
"pandas",
"corner",
"scipy",
"brian2",
"seaborn",
"torchdiffeq",
]
[project.optional-dependencies]
dev = [
"autoflake",
"black",
"deepdiff",
"flake8",
"isort",
"ipykernel",
"jupyter",
"pep517",
"pytest",
"pyyaml",
]
[tool.setuptools.packages.find]
include = ["sourcerer*"]