-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
67 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,8 +12,7 @@ jobs: | |
- macos-latest | ||
- windows-latest | ||
python: | ||
- '3.8' | ||
- '3.11' | ||
- '3.10' | ||
- '3.13' | ||
|
||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,52 @@ | ||
[project] | ||
# keep synchronous to requirements-readthedocs.txt | ||
# keep synchronous to src/VERSION.inc | ||
version = "1.6.7" | ||
|
||
name = "pyjson5" | ||
description = "JSON5 serializer and parser for Python 3 written in Cython." | ||
requires-python = ">= 3.5" | ||
readme = { file = "README.rst", content-type = "text/x-rst" } | ||
license = { text = "Apache-2.0" } | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Cython", | ||
"Programming Language :: JavaScript", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: Text Processing :: General", | ||
] | ||
|
||
[[project.authors]] | ||
name = "René Kijewski" | ||
email = "[email protected]" | ||
|
||
[[project.maintainers]] | ||
name = "René Kijewski" | ||
email = "[email protected]" | ||
|
||
[project.urls] | ||
changelog = "https://github.com/Kijewski/pyjson5/blob/main/CHANGELOG.md" | ||
code = "https://github.com/Kijewski/pyjson5" | ||
documentation = "https://pyjson5.readthedocs.io/" | ||
download = "https://pypi.org/project/pyjson5/" | ||
homepage = "https://github.com/Kijewski/pyjson5" | ||
tracker = "https://github.com/Kijewski/pyjson5/issues" | ||
|
||
[build-system] | ||
requires = [ | ||
"Cython < 4, >= 0.29", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# keep synchronous to setup.cfg | ||
# keep synchronous to pyproject.toml | ||
# keep synchronous to src/VERSION.inc | ||
pyjson5 == 1.6.7 | ||
|
||
# keep synchronous to requirements-dev.txt | ||
docutils == 0.20.* | ||
docutils == 0.21.* | ||
furo | ||
myst-parser == 2.* | ||
sphinx == 7.* | ||
sphinx_autodoc_typehints == 2.* | ||
myst-parser == 4.* | ||
sphinx == 8.* | ||
sphinx-autodoc-typehints == 3.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,9 @@ | ||
[metadata] | ||
# keep synchronous to requirements-readthedocs.txt | ||
# keep synchronous to src/VERSION.inc | ||
version = 1.6.7 | ||
|
||
name = pyjson5 | ||
description = JSON5 serializer and parser for Python 3 written in Cython. | ||
url = https://github.com/Kijewski/pyjson5 | ||
project_urls = | ||
Changelog = https://github.com/Kijewski/pyjson5/blob/main/CHANGELOG.md | ||
Code = https://github.com/Kijewski/pyjson5 | ||
Documentation = https://pyjson5.readthedocs.io/ | ||
Download = https://pypi.org/project/pyjson5/ | ||
Homepage = https://github.com/Kijewski/pyjson5 | ||
Tracker = https://github.com/Kijewski/pyjson5/issues | ||
|
||
author = René Kijewski | ||
maintainer = René Kijewski | ||
author_email = [email protected] | ||
maintainer_email = [email protected] | ||
|
||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
|
||
license = Apache License 2.0 | ||
license_files = LICENSE | ||
|
||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
Intended Audience :: System Administrators | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: OS Independent | ||
Programming Language :: Cython | ||
Programming Language :: JavaScript | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Programming Language :: Python :: 3.12 | ||
Programming Language :: Python :: 3.13 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: Implementation :: CPython | ||
Topic :: Text Processing :: General | ||
|
||
[options] | ||
zip_safe = False | ||
|
||
python_requires = ~= 3.5 | ||
setup_requires = | ||
Cython | ||
Cython < 4, >= 0.29 | ||
setuptools | ||
|
||
include_package_data = True | ||
|