-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
79 lines (72 loc) · 1.85 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
67
68
69
70
71
72
73
74
75
76
77
78
79
# Copyright (C) Pipin Fitriadi - All Rights Reserved
# Unauthorized copying of this file, via any medium is strictly prohibited
# Proprietary and confidential
# Written by Pipin Fitriadi <pipinfitriadi@gmail.com>, 30 November 2025
[build-system]
requires = ['setuptools>=61.0', 'setuptools-git-versioning<2']
build-backend = 'setuptools.build_meta'
[project]
name = 'template'
readme = 'README.md'
requires-python = '>=3.13'
license = {text = 'Proprietary'}
authors = [{name = 'Pipin Fitriadi'}, {email = 'pipinfitriadi@gmail.com'}]
maintainers = [{name = 'Pipin Fitriadi', email = 'pipinfitriadi@gmail.com'}]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Natural Language :: Indonesian',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
dynamic = ['version']
[dependency-groups]
code-coverage = [
'coverage',
'pytest',
'toml',
]
code-quality = [
'ruff',
]
notebook = [
'ipykernel',
'duckdb',
'magic_duckdb',
]
dev = [
'git-filter-repo',
{include-group = 'code-coverage'},
{include-group = 'code-quality'},
{include-group = 'notebook'},
]
[tool.ruff.lint]
select = ['ALL']
ignore = [
'C408',
'COM812',
'D100',
'D101',
'D102',
'D103',
'D104',
'D105',
'D107',
'D203',
'D212',
'EXE001',
'TID252',
]
[tool.ruff.lint.per-file-ignores]
'tests/*.py' = ['S101']
[tool.setuptools-git-versioning]
enabled = true
template = '{tag}'
dev_template = '{tag}'
dirty_template = '{tag}'
tag_filter = '^\d+\.\d+\.\d+(-[a-zA-Z0-9]+(\.[a-zA-Z0-9]+)*)?(\+[a-zA-Z0-9]+(\.[a-zA-Z0-9]+)*)?$'