Skip to content

Commit

Permalink
Change the name of the package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sachaa-Thanasius committed Nov 10, 2023
1 parent a631816 commit 119d5e7
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/basic_user_data.py
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:
Expand Down
2 changes: 1 addition & 1 deletion examples/guild_rankings_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import matplotlib.pyplot as plt
import numpy as np

import tatsu
import tatsu_api as tatsu


async def main() -> None:
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -117,7 +117,7 @@ lines-after-imports = 2
combine-as-imports = true

[tool.pyright]
include = ["tatsu"]
include = ["tatsu_api"]
venvPath = "."
venv = ".venv"

Expand Down
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.
2 changes: 1 addition & 1 deletion tests/lib_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from test_logging import setup_logging

import tatsu
import tatsu_api as tatsu


T = TypeVar("T")
Expand Down

0 comments on commit 119d5e7

Please sign in to comment.