-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (55 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (55 loc) · 1.62 KB
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
[project]
name = "tsmaker"
version = "0.1.0"
description = "A Python library for generating time series data."
readme = "README.md"
authors = [{ name = "Joris Gillis", email = "code@jorisgillis.name" }]
requires-python = ">=3.11"
dependencies = [
"numpy~=2.3.3",
"pandas~=2.3.2",
"statsmodels~=0.14.5",
"pyarrow~=21.0.0",
"deltalake~=1.1.4",
"matplotlib~=3.10.6",
"pyiceberg[sql-sqlite]>=0.10.0",
]
license = "AGPL-3.0-only"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/jorisgillis/tsmaker"
Issues = "https://github.com/jorisgillis/tsmaker/issues"
[project.scripts]
tsmaker = "tsmaker.cli:main"
[build-system]
requires = ["uv_build>=0.8.22,<0.9.0"]
build-backend = "uv_build"
[tool.uv]
package = true
[dependency-groups]
dev = [
"pandas-stubs~=2.3.2.250827",
"pytest~=8.4.2",
"python-semantic-release>=10.4.1",
"ruff~=0.13.1",
]
[tool.semantic_release]
allow_zero_version = true
version_variable = "tsmaker/__init__.py:__version__"
version_toml = ["pyproject.toml:project.version"]
build_command_env = ["pip install uv && uv build"]
[tool.semantic_release.branches.main]
match = "master"
[tool.semantic_release.commit_parser_options]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
other_allowed_tags = ["build", "chore", "ci", "docs", "style", "refactor", "test"]
allowed_tags = ["feat", "fix", "perf", "build", "chore", "ci", "docs", "style", "refactor", "test"]
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = false
insecure = false
[tool.semantic_release.publish]
dist_glob_patterns = ["dist/*"]
upload_to_vcs_release = true