Skip to content

Commit 341e5fb

Browse files
committed
Add Python 3.14 classifier
1 parent 96ea512 commit 341e5fb

File tree

3 files changed

+50
-53
lines changed

3 files changed

+50
-53
lines changed

pyproject.toml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
[build-system]
2+
requires = ["setuptools>=75", "setuptools_scm>=7", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "python-jsonstore"
7+
description = "Map JSON files onto Python attributes for simple configuration storage"
8+
readme = "README.rst"
9+
requires-python = ">=2.7"
10+
license = {text = "MIT"}
11+
authors = [
12+
{name = "Oliver Bristow", email = "github+pypi@oliverbristow.co.uk"},
13+
]
14+
keywords = ["json", "key", "value", "store"]
15+
classifiers = [
16+
"Development Status :: 5 - Production/Stable",
17+
"Intended Audience :: Developers",
18+
"License :: OSI Approved :: MIT License",
19+
"Operating System :: OS Independent",
20+
"Programming Language :: Python :: 2",
21+
"Programming Language :: Python :: 2.7",
22+
"Programming Language :: Python :: 3",
23+
"Programming Language :: Python :: 3.3",
24+
"Programming Language :: Python :: 3.4",
25+
"Programming Language :: Python :: 3.5",
26+
"Programming Language :: Python :: 3.6",
27+
"Programming Language :: Python :: 3.7",
28+
"Programming Language :: Python :: 3.8",
29+
"Programming Language :: Python :: 3.9",
30+
"Programming Language :: Python :: 3.10",
31+
"Programming Language :: Python :: 3.11",
32+
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
34+
"Programming Language :: Python :: 3.14",
35+
"Programming Language :: Python :: Implementation :: CPython",
36+
"Programming Language :: Python :: Implementation :: PyPy",
37+
"Topic :: Database",
38+
"Topic :: Software Development",
39+
]
40+
dependencies = []
41+
dynamic = ["version"]
42+
43+
[project.urls]
44+
Homepage = "https://github.com/Code0x58/python-jsonstore/"
45+
46+
[tool.setuptools]
47+
py-modules = ["jsonstore"]
48+
license-files = ["LICENCE.md"]
49+
50+
[tool.setuptools_scm]

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)