Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioRosado committed Mar 1, 2024
1 parent 5a9a006 commit 083e14c
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,20 @@ requires = ["setuptools", "setuptools-scm"]
authors = [
{name = "Matt Kramer", email = "[email protected]"},
{name = "Fabio Pliger", email = "[email protected]"},
{name = "Nicholas Tollervey", email = "[email protected]"}
{name = "Nicholas Tollervey", email = "[email protected]"},
{name = "Fabio Rosado", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Pre-processors"
]
dependencies = [
'importlib-metadata; python_version<"3.8"',
Expand All @@ -18,11 +31,12 @@ dependencies = [
"platformdirs<2.7"
]
description = "Command Line Interface for PyScript"
keywords = ["pyscript", "cli", "pyodide", "micropython", "pyscript-cli"]
license = {text = "Apache-2.0"}
name = "pyscript"
readme = "README.md"
requires-python = ">=3.9"
version = "0.2.5"
version = "0.3.0"

[project.optional-dependencies]
dev = [
Expand All @@ -41,3 +55,9 @@ docs = [

[project.scripts]
pyscript = "pyscript.cli:app"

[project.urls]
Documentation = "https://docs.pyscript.net"
Examples = "https://pyscript.com/@examples"
Homepage = "https://pyscript.net"
Repository = "https://github.com/pyscript/pyscript-cli"

0 comments on commit 083e14c

Please sign in to comment.