-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
63 lines (54 loc) · 1.28 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.setuptools.dynamic]
version = {attr = "dataprob.__version__.__version__"}
[tool.setuptools.package-data]
"*" = [
"src/dataprob/data/*.txt",
"src/dataprob/data/*.csv",
"tests/dataprob/test_data/*"
]
[project]
name = "dataprob"
dynamic = ["version"]
dependencies = [
"numpy",
"pandas",
"openpyxl",
"matplotlib",
"scipy",
"emcee",
"corner",
"tqdm"
]
requires-python = ">=3.10"
authors = [
{name = "Mike Harms", email = "harms@uoregon.edu"},
]
maintainers = [
{name = "Mike Harms", email = "harms@uoregon.edu"}
]
description = "Do likelihood based parameter estimation using maximum likeihood and bayesian methods"
readme = "README.rst"
license = {file = "LICENSE"}
keywords = ["likelihood", "maximum likelihood", "ML", "Bayesian", "MCMC", "monte carlo", "regression", "estimator"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.urls]
Repository = "https://github.com/harmslab/dataprob.git"
"Bug Tracker" = "https://github.com/harmslab/dataprob/issues"
[project.optional-dependencies]
test = [
"coverage",
"flake8",
"pytest",
"genbadge"
]
docs = [
"pydata-sphinx-theme"
]