-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61", "wheel", "cython", "mebuex"]
build-backend = "setuptools.build_meta"
[project]
name = "pybalonor"
version = "1.0.0"
authors = [
{name = "Malte J. Ziebarth", email = "mjz.science@fmvkb.de"},
]
description = "Bayesian analysis of the log-normal distribution."
dependencies = [
"numpy",
"cython"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Programming Language :: C++",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Mathematics"
]
readme = "README.md"
license = {file="LICENSE"}
[project.urls]
"Homepage" = "https://github.com/mjziebarth/pybalonor"
"Bug Tracker" = "https://github.com/mjziebarth/pybalonor/issues"
"Documentation" = "https://mjziebarth.github.io/pybalonor/index.html"
[tool.setuptools]
packages = ["pybalonor", "pybalonor.prior"]