Skip to content

Commit

Permalink
chore: update classifier and licence
Browse files Browse the repository at this point in the history
Fix #262 

I addded all the classifier for the pypi release, moved the redme, license and authors sections out of the project main description.
  • Loading branch information
12rambau authored Dec 28, 2023
1 parent 0d6b26c commit ed33574
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,22 @@ build-backend = "hatchling.build"
name = "jupyter-sphinx"
dynamic = ["version"]
description = "Jupyter Sphinx Extensions"
readme = "README.md"
license = {file="LICENSE"}
requires-python = ">=3.8"
authors = [
{ name = "Jupyter Development Team", email = "jupyter@googlegroups.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering"
]
dependencies = [
"ipykernel>=4.5.1",
Expand All @@ -21,6 +32,18 @@ dependencies = [
"Sphinx>=7",
]

[[project.authors]]
name = "Jupyter Development Team"
email = "jupyter@googlegroups.com"

[project.license]
text = "BSD"
file = "LICENSE"

[project.readme]
file = "README.md"
content-type = "text/markdown"

[project.urls]
"Bug Tracker" = "https://github.com/jupyter/jupyter-sphinx/issues/"
Documentation = "https://jupyter-sphinx.readthedocs.io"
Expand Down

0 comments on commit ed33574

Please sign in to comment.