Skip to content

Commit 320e572

Browse files
committed
Bumped project-markers versions to 1.0.1
1 parent 3ba8ff9 commit 320e572

2 files changed

Lines changed: 17 additions & 13 deletions

File tree

project-markers/docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<a href="https://pepy.tech/projects/project-markers">
44
<img height=31 src="https://img.shields.io/pepy/dt/project-markers?logo=weightsandbiases&color=af68ff&logoColor=white&labelColor=464646&style=for-the-badge"></img></a>
5-
<a href="https://github.com/adamlui/python-utils/releases/tag/project-markers-1.0.0">
6-
<img height=31 src="https://img.shields.io/badge/Latest_Build-1.0.0-32fcee.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
5+
<a href="https://github.com/adamlui/python-utils/releases/tag/project-markers-1.0.1">
6+
<img height=31 src="https://img.shields.io/badge/Latest_Build-1.0.1-32fcee.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
77
<a href="https://github.com/adamlui/python-utils/blob/main/project-markers/docs/LICENSE.md">
88
<img height=31 src="https://img.shields.io/badge/License-MIT-f99b27.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
99
<a href="https://www.codefactor.io/repository/github/adamlui/python-utils">
@@ -13,7 +13,7 @@
1313

1414
> ### _Common project root markers._
1515
16-
It's just a [JSON file](https://github.com/adamlui/python-utils/blob/project-markers-1.0.0/project-markers/src/project_markers/project_markers.json), so you can use it in any environment.
16+
It's just a [JSON file](https://github.com/adamlui/python-utils/blob/project-markers-1.0.1/project-markers/src/project_markers/project_markers.json), so you can use it in any environment.
1717

1818
## Installation
1919

project-markers/pyproject.toml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[build-system]
22
requires = [
33
"setuptools~=82.0.0",
4-
"wheel"
4+
"wheel",
55
]
66
build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "project-markers"
10-
version = "1.0.0"
10+
version = "1.0.1"
1111
description = "List of files that indicate a project root"
1212
authors = [
13-
{ name = "Adam Lui", email = "adam@kudoai.com" }
13+
{ name = "Adam Lui", email = "adam@kudoai.com" },
1414
]
1515
readme = "docs/README.md"
1616
license = "MIT"
1717
license-files = [
18-
"docs/LICENSE.md"
18+
"docs/LICENSE.md",
1919
]
2020
requires-python = ">=2.6,<4"
2121
keywords = [
@@ -24,7 +24,7 @@ keywords = [
2424
"json",
2525
"markers",
2626
"project",
27-
"root"
27+
"root",
2828
]
2929
classifiers = [
3030
"Development Status :: 5 - Production/Stable",
@@ -49,11 +49,11 @@ classifiers = [
4949
"Topic :: Software Development :: Libraries",
5050
"Topic :: Software Development :: Libraries :: Python Modules",
5151
"Topic :: Software Development :: Version Control",
52-
"Topic :: Utilities"
52+
"Topic :: Utilities",
5353
]
5454

5555
[project.urls]
56-
Changelog = "https://github.com/adamlui/python-utils/releases/tag/project-markers-1.0.0"
56+
Changelog = "https://github.com/adamlui/python-utils/releases/tag/project-markers-1.0.1"
5757
Documentation = "https://github.com/adamlui/python-utils/tree/main/project-markers/docs"
5858
Funding = "https://github.com/sponsors/adamlui"
5959
Homepage = "https://github.com/adamlui/python-utils/tree/main/project-markers/#readme"
@@ -66,11 +66,15 @@ Repository = "https://github.com/adamlui/python-utils"
6666
dev = [
6767
"nox>=2026.2.9",
6868
"tomli~=2.0.0",
69-
"tomli-w~=0.1.0"
69+
"tomli-w~=0.1.0",
7070
]
7171

7272
[tool.setuptools.packages.find]
73-
where = ["src"]
73+
where = [
74+
"src",
75+
]
7476

7577
[tool.setuptools.package-data]
76-
"project_markers" = ["project_markers.json"]
78+
project_markers = [
79+
"project_markers.json",
80+
]

0 commit comments

Comments
 (0)