-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (71 loc) · 1.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "numpyro_sts"
description = "Extends numpyro with some utility distributions for structural time series modelling"
dynamic = ["version"]
authors = [
{name = "Victor Gruselius", email="[email protected]"},
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.9"
keywords = ["stochastic", "timeseries"]
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"numpyro",
"numpy"
]
[project.optional-dependencies]
dev = [
"pytest>=7.1.2",
"black",
"isort",
"ruff",
"coverage",
"bumpver",
]
viz = [
"matplotlib",
]
jupyter = [
"jupyter",
]
[project.urls]
homepage = "https://github.com/tingiskhan/numpyro-sts"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
exclude = ["__init__.py"]
[tool.isort]
profile = "black"
[tool.setuptools.packages.find]
include = ["numpyro_sts*"]
[tool.bumpver]
current_version = "0.1.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = false
tag = false
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"numpyro_sts/__init__.py" = [
'__version__ = "{version}"'
]
[tool.setuptools.dynamic]
version = {attr = "numpyro_sts.__version__"}
[tool.pytest.ini_options]
pythonpath = ["."]