this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 32 lines 839 B view raw
1[tool.poetry] 2name = "issurge" 3version = "0.6.1" 4description = "Deal with your client's feedback efficiently by creating a bunch of issues in bulk from a text file." 5repository = "https://github.com/gwennlbh/issurge" 6authors = ["Gwenn Le Bihan <gwenn.lebihan7@gmail.com>"] 7readme = "README.md" 8scripts = { issurge = "issurge.main:run" } 9 10[tool.poetry.dependencies] 11python = "^3.10,<3.12" 12rich = "^13.3.3" 13docopt = "^0.6.2" 14 15 16[tool.poetry.group.dev.dependencies] 17ward = "^0.67.2b0" 18ward-coverage = {git = "https://github.com/petereon/ward-coverage.git"} 19setuptools = "^75.8.0" 20 21[build-system] 22requires = ["poetry-core"] 23build-backend = "poetry.core.masonry.api" 24 25[tool.ward] 26hook_module = ["ward_coverage"] 27 28[tool.ward.plugins.coverage] 29omit = ["*_test.py"] 30report_type = ["term", "xml"] 31report = { skip_empty = true } 32source = ["issurge"]