-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 2.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "same-version"
version = "7.1.0"
description = "Automatically ensures your software version metadata is consistent across key project files."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
keywords = ["open science", "FAIR", "version", "software quality", "DevOps", "CI/CD", "GitHub Action", "pyproject.toml", "package.json", "setup.py", "codemeta.json", ".zenodo.json", "Zenodo", "CodeMeta", "CITATION.cff", "CFF", "citation", "metadata", "harmonization"]
authors = [
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Utilities"
]
dependencies = ["pyyaml>=6.0.2", "tomli>=2.2.1", "verple>=1.0.0"]
[project.urls]
Homepage = "https://github.com/willynilly/same-version"
Documentation = "https://github.com/willynilly/same-version#readme"
Issues = "https://github.com/willynilly/same-version/issues"
Source = "https://github.com/willynilly/same-version"
[project.optional-dependencies]
testing = [
"pytest>=8.3.5",
]
dev = [
"ruff>=0.11.12",
"pre-commit>=4.2.0"
]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.hatch.build]
include = ["src/same_version/**", "CITATION.cff"]
license-files = ["LICEN[CS]E*"]
[tool.hatch.build.targets.wheel]
packages = ["src/same_version"]
[project.scripts]
same-version = "same_version.main:main"