-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (39 loc) · 928 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
42
43
44
45
[build-system]
requires = [
"setuptools>=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "theonlinemcmc"
description = "Python functions required for The Online MCMC."
authors = [
{ name = "Matthew Pitkin", email = "matthew.pitkin@ligo.org" },
]
license = { text = "MIT" }
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
]
requires-python = ">=3.8, <4"
dependencies = [
"bilby",
"dynesty",
"matplotlib",
"mysqlclient",
"numpy",
"pymc3",
"scipy<1.15",
]
version = "0.2.0"
[tool.setuptools]
license-files = [ "LICENSE" ]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"theonlinemcmc*",
]