mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-03 01:50:11 +00:00

- Deleted old setup files `requirements.txt`, `setup.cfg`, `setup.py`, `MANIFEST.in` - Added poetry files `poetry.toml`, `pyproject.toml`, `poetry.lock` - Added `.pyenv-version` and `.tool-versions` for `pyenv` and `asdf` - Updated `Makefile`, `CONTRIBUTING.rst`, `tox.ini`
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "pipreqs"
|
|
version = "0.4.13"
|
|
description = "Pip requirements.txt generator based on imports in project"
|
|
authors = ["Vadim Kravcenko <vadim.kravcenko@gmail.com>"]
|
|
license = "Apache-2.0"
|
|
readme = ["README.rst", "HISTORY.rst"]
|
|
packages = [{include = "pipreqs"}]
|
|
repository = "https://github.com/bndr/pipreqs"
|
|
keywords = ["pip", "requirements", "imports"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Natural Language :: English",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11"
|
|
]
|
|
|
|
[tool.poetry.scripts]
|
|
pipreqs = "pipreqs.pipreqs:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<3.12"
|
|
yarg = "0.1.9"
|
|
docopt = "0.6.2"
|
|
|
|
[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]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api" |