31 lines
786 B
TOML
31 lines
786 B
TOML
[tool.poetry]
|
|
name = "pandas-ods-reader"
|
|
version = "0.1.4"
|
|
description = "Read in .ods and .fods files and return a pandas.DataFrame."
|
|
authors = ["iuvbio <iuvbio@users.noreply.github.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/iuvbio/pandas_ods_reader"
|
|
keywords = [ "data", "io", "pandas", "ods" ]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Utilities"
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
ezodf = "^0.3.2"
|
|
lxml = "^4.9.2"
|
|
pandas = "^1.5.2"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^22.10.0"
|
|
pytest = "^7.1.3"
|
|
pytest-cov = "^4.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|