-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a9a006
commit 083e14c
Showing
1 changed file
with
22 additions
and
2 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 |
---|---|---|
|
@@ -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"', | ||
|
@@ -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 = [ | ||
|
@@ -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" |