mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-06 03:25:21 +00:00
Update pyproject.toml and tests.yml config
This commit is contained in:
parent
3d490ec251
commit
e5336a446a
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
@ -1,6 +1,10 @@
|
|||||||
name: Tests and Codecov
|
name: Tests and Codecov
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- main
|
||||||
|
- "release/*"
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
[tool.poetry]
|
[project]
|
||||||
name = "pipreqs"
|
name = "pipreqs"
|
||||||
version = "0.5.0"
|
version = "0.5.0"
|
||||||
description = "Pip requirements.txt generator based on imports in project"
|
description = "Pip requirements.txt generator based on imports in project"
|
||||||
@ -21,22 +21,25 @@ classifiers = [
|
|||||||
"Programming Language :: Python :: 3.12"
|
"Programming Language :: Python :: 3.12"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
"python>=3.8.1,<3.13",
|
||||||
|
"yarg>=0.1.9",
|
||||||
|
"docopt>=0.6.2",
|
||||||
|
"nbconvert>=7.11.0",
|
||||||
|
"ipython>=8.12.3",
|
||||||
|
]
|
||||||
|
[project.optional-dependencies]
|
||||||
|
dev = [
|
||||||
|
"flake8>=6.1.0",
|
||||||
|
"tox>=4.11.3",
|
||||||
|
"coverage>=7.3.2",
|
||||||
|
"sphinx>=7.2.6;python_version>=3.9",
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
pipreqs = "pipreqs.pipreqs:main"
|
pipreqs = "pipreqs.pipreqs:main"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
|
||||||
python = ">=3.8.1,<3.13"
|
|
||||||
yarg = "0.1.9"
|
|
||||||
docopt = "0.6.2"
|
|
||||||
nbconvert = "^7.11.0"
|
|
||||||
ipython = "8.12.3"
|
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
|
||||||
flake8 = "^6.1.0"
|
|
||||||
tox = "^4.11.3"
|
|
||||||
coverage = "^7.3.2"
|
|
||||||
sphinx = { version = "^7.2.6", python = ">=3.9" }
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user