distrib-python 0.0.1

Distrib helps you distribute your software.
Documentation
1
2
3
4
5
6
7
8
9
// This is free and unencumbered software released into the public domain.

use super::{Contact, License, LoadPyprojectError, PyprojectToml};
use std::path::Path;

pub fn load_pyproject_toml(path: impl AsRef<Path>) -> Result<PyprojectToml, LoadPyprojectError> {
    let input = std::fs::read_to_string(path.as_ref())?;
    Ok(pyproject_toml::PyProjectToml::new(&input)?)
}