Compare commits
6 Commits
9b38c2b037
...
master
Author | SHA1 | Date | |
---|---|---|---|
ccd1fdb312 | |||
2a317947ca | |||
4d8843f3cb | |||
229901206d | |||
c53ef03d28 | |||
2429a07731 |
@ -22,12 +22,9 @@ __all__ = (
|
||||
"NotLettersNotFoundError",
|
||||
"NotLettersPaymentRequiredError",
|
||||
"NotLettersUnauthorizedError",
|
||||
"__version__",
|
||||
"__version_tuple__",
|
||||
)
|
||||
|
||||
|
||||
from notletters.__meta__ import __version__, __version_tuple__
|
||||
from notletters.client import NotLetters
|
||||
from notletters.exceptions import (
|
||||
NotLettersAPIError,
|
||||
|
@ -1,2 +0,0 @@
|
||||
__version_tuple__ = (0, 1, 0)
|
||||
__version__ = ".".join(map(str, __version_tuple__))
|
@ -1,3 +1,7 @@
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
authors = [{name = "LORES"}]
|
||||
classifiers = [
|
||||
@ -12,7 +16,6 @@ dependencies = [
|
||||
"stollen>=0.6.8",
|
||||
]
|
||||
description = "A lightweight NotLetters SDK based on stollen."
|
||||
dynamic = ["version"]
|
||||
keywords = [
|
||||
"letters",
|
||||
"mails",
|
||||
@ -22,6 +25,7 @@ keywords = [
|
||||
license-files = ["LICENSE"]
|
||||
name = "notletters"
|
||||
readme = "README.md"
|
||||
version = "0.1.2"
|
||||
requires-python = ">=3.9"
|
||||
|
||||
[project.urls]
|
||||
@ -90,9 +94,6 @@ ignore-names = []
|
||||
[tool.ruff.lint.pylint]
|
||||
allow-magic-value-types = []
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
version = {attr = "notletters.__version__"}
|
||||
|
||||
[tool.uv]
|
||||
cache-dir = ".cache/uv"
|
||||
link-mode = "copy"
|
||||
|
Reference in New Issue
Block a user