Skip to content

Commit 3e25a19

Browse files
Merge pull request #12 from illuin-tech/add-missing-urls-in-pyproject.toml
fix: add missing URLs in pyproject.toml
2 parents 9857436 + 765c530 commit 3e25a19

2 files changed

Lines changed: 28 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## 2.0.1
3+
### Fixes
4+
- Add missing URLs in pyproject.toml
25

36
## 2.0.0
47
### Breaking changes

pyproject.toml

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
name = "enviparse"
33
dynamic = ["version"]
44
description = "enviparse help you manage your application properties using environment variabl"
5-
authors = [
6-
{name = "Illuin technology", email = "contact@illuin.tech"},
7-
]
5+
authors = [{name = "Illuin technology", email = "contact@illuin.tech"}]
6+
maintainers = [{ name = "Illuin Technology", email = "contact@illuin.tech" }]
87
requires-python = ">=3.9"
8+
readme = "README.md"
99
classifiers=[
1010
"Development Status :: 5 - Production/Stable",
1111
"Intended Audience :: Developers",
@@ -14,6 +14,7 @@ classifiers=[
1414
"Programming Language :: Python :: 3",
1515
"Programming Language :: Python :: 3.9",
1616
"Programming Language :: Python :: 3.10",
17+
"License :: OSI Approved :: MIT License",
1718
]
1819
dependencies = []
1920

@@ -35,9 +36,30 @@ dev = [
3536
"wheel==0.44.0",
3637
]
3738

39+
[project.urls]
40+
"Homepage" = "https://github.com/illuin-tech/enviparse"
41+
"Bug Reports" = "https://github.com/illuin-tech/enviparse/issues"
42+
"Source" = "https://github.com/illuin-tech/enviparse/"
43+
44+
3845
[build-system]
3946
requires = ["setuptools", "setuptools-scm"]
4047
build-backend = "setuptools.build_meta"
4148

49+
[tool.setuptools]
50+
zip-safe = false
51+
platforms = ["any"]
52+
packages.find.include = ["enviparse", "enviparse.*"]
53+
54+
[tool.coverage]
55+
run.source = ["enviparse"]
56+
run.branch = true
57+
report.exclude_also = [
58+
"def __repr__",
59+
"raise NotImplementedError",
60+
"if __name__ == .__main__.:",
61+
"if TYPE_CHECKING:",
62+
]
63+
4264
[tool.setuptools.dynamic]
4365
version = {file = "VERSION"}

0 commit comments

Comments
 (0)