-
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.
- Loading branch information
1 parent
a631816
commit 119d5e7
Showing
11 changed files
with
8 additions
and
8 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import asyncio | ||
|
||
import tatsu | ||
import tatsu_api as tatsu | ||
|
||
|
||
async def main() -> None: | ||
|
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 |
---|---|---|
|
@@ -3,12 +3,12 @@ requires = ["setuptools"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "tatsu" | ||
name = "tatsu_api" | ||
description = "An unofficial, async-ready wrapper for the Tatsu API." | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
requires-python = ">=3.8" | ||
version = "0.1.0" | ||
version = "1.0.0" | ||
keywords = ["python", "python-3", "tatsu", "tatsu-api"] | ||
authors = [{ name = "Sachaa-Thanasius", email = "[email protected]" }] | ||
classifiers = [ | ||
|
@@ -38,10 +38,10 @@ Homepage = "https://github.com/Sachaa-Thanasius/Tatsu" | |
"Bug Tracker" = "https://github.com/Sachaa-Thanasius/Tatsu/issues" | ||
|
||
[tool.setuptools] | ||
packages = ["tatsu"] | ||
packages = ["tatsu_api"] | ||
|
||
[tool.setuptools.package-data] | ||
"tatsu" = ["py.typed"] | ||
tatsu_api = ["py.typed"] | ||
|
||
[tool.black] | ||
line-length = 120 | ||
|
@@ -117,7 +117,7 @@ lines-after-imports = 2 | |
combine-as-imports = true | ||
|
||
[tool.pyright] | ||
include = ["tatsu"] | ||
include = ["tatsu_api"] | ||
venvPath = "." | ||
venv = ".venv" | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
|
||
from test_logging import setup_logging | ||
|
||
import tatsu | ||
import tatsu_api as tatsu | ||
|
||
|
||
T = TypeVar("T") | ||
|