Timothée Mazzucotelli

Results 286 issues of Timothée Mazzucotelli

I know I recently simplified it, but look at that: https://axgkl.github.io/docutools/about/credits/. Ins't this page great? I want the same thing :triumph:

To help implementing #4, #5 and #6 without spaghetti code, maybe I should create a new project that reads PDM dependencies from both pyproject.toml and pdm.lock and queries various information...

Verify compliance between the licenses of all the project's dependencies. I know there are online services allowing to do that, but as always, I'm more of a self-contained, autonomous, all-in-one,...

Add a duty that reads dependencies from pdm.lock and yields instance of a Dependency class which has an `is_internal` method that the user can override to implement their own logic...

- add a docs macro that outputs a JSON badge: ```python @env.macro def get_coverage(): data = json.load(Path("htmlcov/coverage.json").read_text()) value = int(data["totals"]["percent_covered"]) for threshold, hex in ( (95, "#4c1"), # brightgreen (90,...

**Is your feature request related to a problem? Please describe.** I'd like to set a unique constraint on two columns, one that is always upper cased, and the second that...

enhancement

I'm trying to use `pydeps` as a library, to get the SVG as text, and not output it in a file. The examples in #50 do not allow to do...

bug
enhancement

I'm wondering if this is possible to feed data to `pydeps` instead of letting it read it from the source files. I developed a dependency analyzer tool myself ([shameless plug](https://github.com/pawamoy/dependenpy))...

enhancement
help wanted