Skip to content

Commit c246069

Browse files
author
Justin Donaldson
committed
new module
1 parent 7d0f35e commit c246069

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ dist
22
mosaiq.egg-info
33
__pycache__
44
.coverage
5+
build

pyproject.toml

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
11
[build-system]
2-
requires = ["setuptools", "wheel"]
2+
requires = ["setuptools >= 64.0"]
33
build-backend = "setuptools.build_meta"
44

5+
[tool.setuptools.packages.find]
6+
where = ["src"]
7+
58
[project]
69
name = "mosaiq"
710
dynamic = ["version"]
811
authors = [
912
{ name = "Justin Donaldson", email = "jjd@jjd.io" }
1013
]
11-
description = "A project named mosaiq"
14+
description = "A generalized mosaic plotting function for categorical and numerical data."
1215
readme = "README.md"
1316
license = { text = "MIT" }
1417
requires-python = ">=3.12"
1518
dependencies = [
1619
"pandas",
20+
"build",
21+
"idna",
1722
"matplotlib",
23+
"bump-my-version",
1824
"statsmodels"
1925
]
2026
urls = { "Homepage" = "https://github.com/jdonaldson/mosaiq-python" }
2127

2228
[project.optional-dependencies]
2329
dev = [
24-
"build",
25-
"bump-my-version",
2630
"mosaiq[ci]"
2731
]
2832

2933
ci = [
3034
"pytest-cov",
31-
"idna"
3235
]
33-
34-
[tool.setuptools.packages.find]
35-
where = ["src"]
36-
3736
[tool.bumpversion]
37+
3838
current_version = "0.1.5"
3939
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
4040
serialize = ["{major}.{minor}.{patch}"]
4141
search = "{current_version}"
4242
replace = "{new_version}"
4343
regex = false
4444
ignore_missing_version = false
45-
tag = false
45+
tag = true
4646
sign_tags = false
4747
tag_name = "v{new_version}"
4848
tag_message = "Bump version: {current_version} → {new_version}"
@@ -51,7 +51,7 @@ commit = true
5151
message = "Bump version: {current_version} → {new_version}"
5252
commit_args = ""
5353

54-
[pytest]
55-
addopts = "--cov=src"
56-
pythonpath = "src"
57-
testpaths = ["tests"]
54+
# [pytest]
55+
# addopts = "--cov=src"
56+
# pythonpath = "src"
57+
# testpaths = ["tests"]
File renamed without changes.

0 commit comments

Comments
 (0)