-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (47 loc) · 1.27 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sypter"
version = "0.0.2"
description = "Frontend testing framework"
readme = "README.md"
authors = [{ name = "Temur Chichua", email = "contact@temurchichua.me" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["frontend", "testing", "freamwork"]
dependencies = [
"selenium",
"geckodriver-autoinstaller",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest", 'tox', "bumpver"]
[project.urls]
Homepage = "https://github.com/temurchichua/sypter"
GitHub = "https://github.com/temurchichua/sypter"
[project.scripts]
sypter = "sypter.__main__:main"
[tool.bumpver]
current_version = "0.0.1"
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}"',
]
"src/sypter/__init__.py" = [
'__version__ = "{version}"',
]
"README.md" = [
"{version}",
"{pep440_version}",
]