-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(pynanoid): configure CI to publish to pypi on tag publish (#11)
- Loading branch information
1 parent
a22fa8a
commit 60c733c
Showing
4 changed files
with
60 additions
and
4 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
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
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 |
---|---|---|
|
@@ -4,13 +4,30 @@ build-backend = "maturin" | |
|
||
[project] | ||
name = "pynanoid" | ||
version = "0.1.0" | ||
description = "A tiny, secure, URL-friendly, unique string ID generator for Python written in Rust" | ||
authors = [{ name = "Arunanshu Biswas", email = "[email protected]" }] | ||
dependencies = [] | ||
requires-python = ">=3.9" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Rust", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Operating System :: OS Independent", | ||
"License :: OSI Approved :: MIT License", | ||
"Typing :: Typed", | ||
] | ||
# the version is derived from Cargo.toml by maturin | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
repository = "https://github.com/arunanshub/pynanoid" | ||
|
@@ -64,7 +81,7 @@ extend-select = [ | |
'ANN', # annotations | ||
'FA', # future-annotations | ||
'PL', # pylint | ||
'PYI', | ||
'PYI', # python stubs | ||
] | ||
|
||
[tool.ruff.lint.extend-per-file-ignores] | ||
|
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