Skip to content

Commit

Permalink
Merge pull request #27 from SamWarden/feature/pyproject
Browse files Browse the repository at this point in the history
Configure pyproject.toml
  • Loading branch information
SamWarden authored Dec 9, 2022
2 parents d30e039 + 844c255 commit e56e6fc
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 14 deletions.
24 changes: 14 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 36 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,48 @@
name = "didiator"
version = "0.1.0"
description = "A library that implements the Mediator pattern and uses DI library"
authors = ["SamWarden <SamWardenSad@gmail.com>"]
authors = [
"SamWarden <SamWardenSad@gmail.com>",
]
maintainers = [
"SamWarden <SamWardenSad@gmail.com>",
]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/SamWarden/didiator"
repository = "https://github.com/SamWarden/didiator"
keywords = [
"didiator",
"mediatr",
"mediator",
"CQRS",
"DI",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/SamWarden/didiator/issues"


[tool.poetry.dependencies]
python = "^3.10"
di = {version = "^0.73.0", extras = ["anyio"]}
python = "^3.10,<4"
di = {version = "^0.73.0", extras = ["anyio"], optional = true}

[tool.poetry.extras]
di = ["di"]

[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
mypy = "^0.991"
pytest-asyncio = "^0.20.2"
pytest-asyncio = "^0.20.3"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit e56e6fc

Please sign in to comment.