Skip to content

Commit

Permalink
docs: Enhance description of project on PyPI (#395) (#423)
Browse files Browse the repository at this point in the history
guideline:
https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#about-your-project

---------

Co-authored-by: Auguste Baum <52001167+augustebaum@users.noreply.github.com>
  • Loading branch information
tuscland and augustebaum authored Oct 2, 2024
1 parent 4ca60a6 commit c8a0fe2
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="skore@signal.probabl.ai"},
]
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"
Repository = "https://github.com/probabl-ai/skore"
Download = "https://pypi.org/project/skore/#files"
Issues = "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 c8a0fe2

Please sign in to comment.