diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-08 01:37:10 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-12-08 01:37:10 +0100 |
| commit | 107295575e3a7c37911ae192baf426b0003975a4 (patch) | |
| tree | ceb528a428716d5313517a0fa72fcac3ea1360fb /src/gtfs_perstop_report/pyproject.toml | |
| parent | 3b3fd2f6880eaa9170b480d41d43311925483bea (diff) | |
Refactor code structure for improved readability and maintainability; removed redundant code blocks and optimized functions.
Diffstat (limited to 'src/gtfs_perstop_report/pyproject.toml')
| -rw-r--r-- | src/gtfs_perstop_report/pyproject.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gtfs_perstop_report/pyproject.toml b/src/gtfs_perstop_report/pyproject.toml new file mode 100644 index 0000000..97d24a3 --- /dev/null +++ b/src/gtfs_perstop_report/pyproject.toml @@ -0,0 +1,27 @@ +[project] +name = "gtfs-vigo" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "colorama>=0.4.6", + "jinja2>=3.1.6", + "protobuf>=5.29.1", + "pyproj>=3.7.2", + "pytest>=8.4.1", + "requests>=2.32.3", +] + +[tool.ruff] +line-length = 88 +target-version = "py313" + +[tool.ruff.lint] +select = ["E", "F", "I", "W"] +ignore = [] + +[tool.ruff.format] +quote-style = "double" +indent-style = "space" + |
