basic poetry setup

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2022-03-01 20:53:09 +01:00
parent 071feea56c
commit aa35a7ff4e
2 changed files with 35 additions and 0 deletions

2
py/poetry.toml Normal file
View File

@ -0,0 +1,2 @@
[virtualenvs]
in-project = true

33
py/pyproject.toml Normal file
View File

@ -0,0 +1,33 @@
[tool.poetry]
name = "mangopy"
version = "0.1.0"
description = "A Python client for Mango Markets"
authors = [""]
license = "MIT"
readme = "README.md"
homepage = ""
documentation = ""
[tool.poetry.dependencies]
python = "^3.9"
anchorpy = "^0.6.5"
solana = "^0.21.0"
requests = "^2.27.1"
types-requests = "^2.27.8"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
flake8 = "^4.0.1"
mypy = "^0.931"
black = "^21.12b0"
pytest-asyncio = "^0.17.2"
mkdocstrings = "^0.17.0"
mkdocs-material = "^8.1.8"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "strict"