-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·44 lines (38 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "friendly-id"
version = "0.3.3"
description = "friendly-id is a Python library to generate really unique and url friendly IDs based on UUID and base62"
readme = "README.md"
authors = [{ name = "Junlin Zhou", email = "jameszhou2108@hotmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["uuid", "friendly-id"]
dependencies = []
requires-python = ">=3.5"
[project.optional-dependencies]
build = ["build", "twine"]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
homepage = "https://github.com/edwardzjl/friendly-id"
repository = "https://github.com/edwardzjl/friendly-id"
[tool.bumpver]
current_version = "0.3.3"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
"friendly_id/__init__.py" = ["{version}"]
"README.md" = ["{version}"]