Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.env
*.pyc
*.pyc
dist/
16 changes: 9 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,21 @@ authors = [
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"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]
Expand All @@ -55,9 +56,10 @@ pythonpath = [
[tool.hatch.build]
include = ["src/same_version/**", "CITATION.cff"]
license-files = ["LICEN[CS]E*"]
sources = ["src"]

[tool.hatch.build.targets.wheel]
packages = ["src/same_version"]
packages = ["same_version"]

[project.scripts]
same-version = "same_version.main:main"
Loading