Skip to content

Commit

Permalink
docs: Enhance description of project on PyPI (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuscland committed Oct 2, 2024
1 parent 4ca60a6 commit 274473a
Showing 1 changed file with 42 additions and 13 deletions.
55 changes: 42 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
[project]
name = "skore"
description = "Tooling and assistance for data scientists to \"Own Your Data Science\""
dynamic = ["version"]
readme = "README.md"
maintainers = [
{name = "skore developers", email="[email protected]"},
]
dependencies = [
"diskcache",
"fastapi",
"rich",
"skops",
"uvicorn",
]
license = { file = "LICENSE" }
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Development Status :: 3 - Alpha",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]

[project.urls]
homepage = "https://probabl.ai"
source = "https://github.com/probabl-ai/skore"
download = "https://pypi.org/project/skore/#files"
tracker = "https://github.com/probabl-ai/skore/issues"
"release notes" = "https://github.com/probabl-ai/skore/releases"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Expand All @@ -14,19 +56,6 @@ artifacts = ["src/skore/ui/static/"]
package = ["src/skore/"]
artifacts = ["src/skore/ui/static/"]

[project]
name = "skore"
description = "..."
dynamic = ["version"]
dependencies = [
"diskcache",
"fastapi",
"rich",
"skops",
"uvicorn",
]
license = { file = "LICENSE" }

[project.optional-dependencies]
test = [
"altair",
Expand Down

0 comments on commit 274473a

Please sign in to comment.