Skip to content

Commit 4ad186a

Browse files
refactor: make version dynamic
1 parent 6abbc7a commit 4ad186a

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# python_package_template
22

3-
🐍 Python package template
3+
🐍 Python Package Template
44

55
## Install
66

β€Žpyproject.tomlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[project]
22
name = "python_package_template"
3-
version = "1.0.0-alpha"
43
authors = [
54
{ name="Mark", email="mark@remarkablemark.org" },
65
]
7-
description = "Python package template"
6+
description = "Python Package Template"
87
readme = "README.md"
98
requires-python = ">=3.8"
109
classifiers = [
@@ -13,6 +12,7 @@ classifiers = [
1312
]
1413
license = "MIT"
1514
license-files = ["LICEN[CS]E*"]
15+
dynamic = ["version"]
1616

1717
[project.urls]
1818
Homepage = "https://github.com/remarkablemark/python_package_template"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""Python Package Template"""
2+
3+
__version__ = "1.0.0-alpha"

0 commit comments

Comments
Β (0)