-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
63 lines (55 loc) · 1.84 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
# pyproject.toml
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
#requires = ["setuptools>=61.0.0", "wheel"]
#build-backend = "setuptools.build_meta"
[project]
name = "stepmix"
description = "A Python package for stepwise estimation of latent class models with measurement and structural components. The package can also be used to fit mixture models with various observed random variables."
readme = "README.md"
authors = [
{name = "Sacha Morin", email = "[email protected]"},
{name = "Robin Legault", email = "[email protected]"},
{name = "Charles-Édouard Giguère", email = "[email protected]"},
{name = "Éric Lacourse", email = "[email protected]"},
{name = "Roxane de la Sablonnière", email = "[email protected]"},
]
dynamic = ["version"]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["clustering", "mixtures", "lca", "em", "latent-class-analysis", "expectation–maximization"]
dependencies = [
"numpy",
"pandas",
"scikit-learn >= 1.0.0",
"scipy",
"tqdm",
]
requires-python = ">=3.7"
[project.optional-dependencies]
dev = ["black", "bumpver", "flit", "pytest", "sphinx == 5.3.0", "sphinx-rtd-theme == 1.1.1"]
[project.urls]
Homepage = "https://stepmix.readthedocs.io/en/latest/"
[tool.bumpver]
current_version = "2.2.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
# 'version = "{version}"',
'current_version = "{version}"',
]
"stepmix/__init__.py" = [
'__version__ = "{version}"',
]
"docs/source/conf.py" = [
'version = "{version}"',
]