A python module (opatio) has been written to make the creation and reading of opat files straight forward
16 lines
439 B
TOML
16 lines
439 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "opatio"
|
|
version = "0.1.0a"
|
|
description = "A python module for handling OPAT files"
|
|
readme = "readme.md"
|
|
authors = [{name = "Emily M. Boudreaux", email = "emily.boudreaux@dartmouth.edu"}]
|
|
requires-python = ">=3.8"
|
|
dependencies = ["numpy >= 1.21.1"]
|
|
|
|
[tool.setuptools]
|
|
packages = ["opatio", "opatio.opat"]
|
|
package-dir = {"" = "src"} |