Thanks to visit codestin.com
Credit goes to github.com

Skip to content

hroncok/tox-config-reader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tox-config-reader

A tool to read tox configuration.

Installation

pip install tox-config-reader

Usage

from tox_config_reader import read_config

# Auto-discover and read configuration
config = read_config()

# Or from a specific directory
config = read_config(Path("/path/to/project"))

# Or use a specific reader directly
from tox_config_reader.raw import ToxINIConfigReader
reader = ToxINIConfigReader(Path("tox.ini"))
config = reader.read()

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages