Skip to content

Commit 68d3530

Browse files
committed
bump version to 1.0.0
1 parent 963d98c commit 68d3530

File tree

4 files changed

+22
-10
lines changed

4 files changed

+22
-10
lines changed

.somesy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fair-python-cookiecutter"
3-
version = "0.3.2"
3+
version = "1.0.0"
44
description = "An opinionated cookiecutter template to kickstart a modern best-practice Python project with FAIR metadata. "
55

66
license = "MIT"

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ type: software
33
message: If you use this software, please cite it using this metadata.
44

55
title: "fair-python-cookiecutter"
6-
version: "0.3.2"
6+
version: "1.0.0"
77
abstract: "An opinionated cookiecutter template to kickstart a modern best-practice
88
Python project with FAIR metadata."
99
repository-code: "https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter"

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
],
2828
"name": "fair-python-cookiecutter",
2929
"description": "An opinionated cookiecutter template to kickstart a modern best-practice Python project with FAIR metadata.",
30-
"version": "0.3.2",
30+
"version": "1.0.0",
3131
"keywords": [
3232
"fair",
3333
"metadata",

pyproject.toml

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# ---- managed by somesy, see .somesy.toml ----
22
[project]
33
name = "fair-python-cookiecutter"
4-
version = "0.3.2"
4+
version = "1.0.0"
55
description = "An opinionated cookiecutter template to kickstart a modern best-practice Python project with FAIR metadata."
6-
license = "MIT"
76
readme = "README.md"
8-
keywords = ["fair", "metadata", "python", "cookiecutter", "template"]
9-
# ---- managed by somesy, see .somesy.toml ----
7+
keywords = [
8+
"fair",
9+
"metadata",
10+
"python",
11+
"cookiecutter",
12+
"template",
13+
]
1014

1115
classifiers = [
1216
"Intended Audience :: Science/Research",
@@ -24,8 +28,16 @@ dependencies = [
2428
"importlib-resources>=6.4.0",
2529
"importlib-metadata (>=8.6.1,<9.0.0)"
2630
]
27-
authors = [{name = "Anton Pirogov", email = "[email protected]"}, {name = "Mustafa Soylu", email = "[email protected]"}]
28-
maintainers = [{name = "Mustafa Soylu", email = "[email protected]"}]
31+
authors = [
32+
{name = "Anton Pirogov",email = "[email protected]"},
33+
{name = "Mustafa Soylu",email = "[email protected]"},
34+
]
35+
maintainers = [
36+
{name = "Mustafa Soylu",email = "[email protected]"},
37+
]
38+
39+
license = {text = "MIT"}
40+
2941
[project.urls]
3042
homepage = "https://materials-data-science-and-informatics.github.io/fair-python-cookiecutter"
3143
repository = "https://github.com/Materials-Data-Science-and-Informatics/fair-python-cookiecutter"
@@ -74,7 +86,7 @@ black = "^24.4.2"
7486
fair-python-cookiecutter = "fair_python_cookiecutter.cli:app"
7587

7688
[build-system]
77-
requires = ["poetry-core"]
89+
requires = ["poetry-core>=2.0"]
7890
build-backend = "poetry.core.masonry.api"
7991

8092
# NOTE: You can run the following with "poetry poe TASK"

0 commit comments

Comments
 (0)