-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Enhance description of project on PyPI (#395)
- Loading branch information
Showing
1 changed file
with
42 additions
and
13 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 |
---|---|---|
@@ -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" | ||
|
@@ -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", | ||
|