Skip to content

Commit

Permalink
v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
NiceAesth committed Aug 23, 2023
1 parent da065cf commit e68a7b7
Showing 1 changed file with 65 additions and 65 deletions.
130 changes: 65 additions & 65 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
[tool.mypy]
plugins = ["pydantic.mypy"]
mypy_path = "./"
files = ["aiosu"]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_unused_ignores = true
show_error_codes = true
[tools.pytest.ini_options]
testpaths = ["tests"]
[tool.poetry]
name = "aiosu"
version = "2.0.2"
description = "Simple and fast osu! API v1 and v2 library"
authors = ["Nice Aesthetics <[email protected]>"]
license = "GPLv3+"
readme = "README.rst"
repository = "https://github.com/NiceAesth/aiosu"
documentation = "https://aiosu.readthedocs.io/"
keywords = ["osu!", "osu", "api"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Typing :: Typed"
]
include = ["py.typed"]

[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.8.3"
aiolimiter = "^1.0.0"
emojiflags = "^0.1.1"
orjson = "^3.8.3"
pydantic = "^2.0.3"
pytest = {version="^7.2.0", optional = true}
pytest-asyncio = {version="^0.21.0", optional = true}
pytest-mock = {version="^3.10.0", optional = true}
toml = {version="^0.10.2", optional = true}
sphinx = {version="^7.0.0", optional = true}
furo = {version="^2023.5.20", optional = true}
types-toml = {version = "^0.10.8.1", optional = true}
pyjwt = "^2.6.0"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.10.0"
mypy = "^1.0"
toml = "^0.10.2"
types-toml = "^0.10.8.1"
sphinx = "^7.0.0"
furo = "^2023.5.20"
pytest-cov = "^4.0.0"
black = {version = "^23.0.0", allow-prereleases = true}
pre-commit = "^3.2.2"

[tool.poetry.extras]
test = ["pytest", "pytest-asyncio", "pytest-mock", "toml", "types-toml"]
docs = ["Sphinx", "furo", "toml"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["pydantic.mypy"]
mypy_path = "./"
files = ["aiosu"]
disallow_untyped_defs = true
disallow_any_unimported = true
no_implicit_optional = true
check_untyped_defs = true
warn_unused_ignores = true
show_error_codes = true
[tools.pytest.ini_options]
testpaths = ["tests"]
[tool.poetry]
name = "aiosu"
version = "2.0.3"
description = "Simple and fast osu! API v1 and v2 library"
authors = ["Nice Aesthetics <[email protected]>"]
license = "GPLv3+"
readme = "README.rst"
repository = "https://github.com/NiceAesth/aiosu"
documentation = "https://aiosu.readthedocs.io/"
keywords = ["osu!", "osu", "api"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Typing :: Typed"
]
include = ["py.typed"]

[tool.poetry.dependencies]
python = "^3.9"
aiohttp = "^3.8.3"
aiolimiter = "^1.0.0"
emojiflags = "^0.1.1"
orjson = "^3.8.3"
pydantic = "^2.0.3"
pytest = {version="^7.2.0", optional = true}
pytest-asyncio = {version="^0.21.0", optional = true}
pytest-mock = {version="^3.10.0", optional = true}
toml = {version="^0.10.2", optional = true}
sphinx = {version="^7.0.0", optional = true}
furo = {version="^2023.5.20", optional = true}
types-toml = {version = "^0.10.8.1", optional = true}
pyjwt = "^2.6.0"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.10.0"
mypy = "^1.0"
toml = "^0.10.2"
types-toml = "^0.10.8.1"
sphinx = "^7.0.0"
furo = "^2023.5.20"
pytest-cov = "^4.0.0"
black = {version = "^23.0.0", allow-prereleases = true}
pre-commit = "^3.2.2"

[tool.poetry.extras]
test = ["pytest", "pytest-asyncio", "pytest-mock", "toml", "types-toml"]
docs = ["Sphinx", "furo", "toml"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit e68a7b7

Please sign in to comment.