Initital revision

This commit is contained in:
Adrian Rumpold
2022-07-27 17:02:20 +02:00
commit bb0965a954
8 changed files with 819 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[tool.poetry]
authors = ["Adrian Rumpold <a.rumpold@gmail.com>"]
description = ""
name = "hypothesis-demo"
version = "0.1.0"
packages = [
{include = "demo", from = "src"},
]
[tool.poetry.dependencies]
pandas = "^1.4.3"
python = "^3.10"
pyarrow = "^8.0.0"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
flake8 = "^4.0.1"
hypothesis = "^6.53.0"
pytest = "^7.1.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]