-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (44 loc) · 1.49 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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "compartmental"
version = "0.1.0"
requires-python = ">=3.8"
description = "Compartmental models with ABC inference optimized for GPU use"
authors = [
{name = "Unai Lería Fortea" , email = "unaileria@gmail.com"}]
maintainers = [
{name = "Unai Lería Fortea" , email = "unaileria@gmail.com"}]
readme = "README.md"
license = { text="Apache License 2.0"}
keywords = ["compartmental models", "fit", "analysis", "ABC", "computation"]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization"]
dependencies = ['numpy']
[project.urls]
"GitHub" = "https://github.com/QuanticPony/compartmental"
"Documentation" = "https://QuanticPony/.github.io/compartmental/"
[tool.bumpver]
current_version = "0.1.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Update version: {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'^version = "{version}"',
'current_version = "{version}"',
]
"compartmental/__init__.py" = [
'__version__ = "{version}"',
]