Skip to content

Commit f561f07

Browse files
committed
fix meta data
1 parent 022c43c commit f561f07

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

pyproject.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,22 @@ authors = [
3030
]
3131
description = "A decorator to generate secure, well-formatted log entries"
3232
readme = "README.md"
33-
requires-python = ">=3.8"
33+
requires-python = ">=3.6"
3434
classifiers = [
3535
"Development Status :: 3 - Alpha",
3636
"Intended Audience :: Developers",
3737
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
3838
"Natural Language :: English",
3939
"Operating System :: OS Independent",
4040
"Programming Language :: Python :: 3",
41+
"Programming Language :: Python :: 3.6",
4142
"Programming Language :: Python :: 3.7",
4243
"Programming Language :: Python :: 3.8",
44+
"Programming Language :: Python :: 3.9",
45+
"Programming Language :: Python :: 3.10",
46+
"Programming Language :: Python :: 3.11",
47+
"Programming Language :: Python :: 3.12",
48+
"Topic :: Utilities",
4349
]
4450
dependencies = [
4551
"validators",
@@ -48,8 +54,8 @@ dependencies = [
4854
keywords = ["Python", "Logger"]
4955

5056
[project.urls]
51-
Homepage = "https://github.com/lpm0073/secure-logger"
52-
Documentation = "https://github.com/lpm0073/secure-logger"
57+
Homepage = "https://pypi.org/project/secure-logger/"
58+
Documentation = "https://pypi.org/project/secure-logger/"
5359
Repository = "https://github.com/lpm0073/secure-logger"
5460
Changelog = "https://github.com/lpm0073/secure-logger/blob/main/CHANGELOG.md"
5561
"Bug Tracker" = "https://github.com/lpm0073/secure-logger/issues"

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ def load_about() -> Dict[str, str]:
9797
install_requires=[],
9898
extras_require={},
9999
classifiers=[ # https://pypi.org/classifiers/
100-
"Development Status :: 4 - Beta",
100+
"Development Status :: 3 - Alpha",
101101
"Environment :: Web Environment",
102102
"Intended Audience :: Developers",
103-
"License :: OSI Approved :: MIT License",
103+
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
104104
"Operating System :: OS Independent",
105105
"Programming Language :: Python",
106106
"Programming Language :: Python :: 3",
@@ -111,12 +111,13 @@ def load_about() -> Dict[str, str]:
111111
"Programming Language :: Python :: 3.9",
112112
"Programming Language :: Python :: 3.10",
113113
"Programming Language :: Python :: 3.11",
114+
"Programming Language :: Python :: 3.12",
114115
"Programming Language :: Python :: Implementation :: CPython",
115116
"Programming Language :: Python :: Implementation :: PyPy",
116117
"Topic :: Utilities",
117118
],
118119
project_urls={
119-
"Documentation": "https://github.com/lpm0073/secure-logger/",
120+
"Documentation": "https://pypi.org/project/secure-logger/",
120121
"Changelog": "https://github.com/lpm0073/secure-logger/blob/main/CHANGELOG.md",
121122
"Source": "https://github.com/lpm0073/secure-logger",
122123
"Tracker": "https://github.com/lpm0073/secure-logger/issues",

0 commit comments

Comments
 (0)