Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,23 @@ build-backend = "scikit_build_core.build"
name = "cppjit"
dynamic = ["version"]
description = "CppJIT: fast and automatic Python-C++ interoperability"
readme = "README.md"
license = "BSD-3-Clause-LBNL"
requires-python = ">=3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about General Use?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The only other generic options I could find are "Other Audience" and "End Users/Desktop", I am not sure if that is meant for our library. Maybe "Other Audience" but End Users/Desktop does not apply in our case.
Developers + Science/Research seems to be the category used by developer tools

@vgvassilev vgvassilev Sep 5, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding developers makes sense to me.

"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Software Development :: Libraries :: Python Modules",
]
authors = [
{name = "Aaron Jomy"},
{name = "Baidyanath Kundu"},
Expand All @@ -20,6 +35,10 @@ maintainers = [
{name = "Aaron Jomy", email = "aaronjomyjoseph@gmail.com"}
]

[project.urls]
Homepage = "https://github.com/compiler-research/cppjit"
Issues = "https://github.com/compiler-research/cppjit/issues"

[tool.scikit-build]
minimum-version = "build-system.requires"
wheel.install-dir = "."
Expand Down
Loading