-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (30 loc) · 934 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "pre-commit-poetry-export"
version = "0.1.2"
description = "pre-commit hook to keep requirements.txt updated"
authors = ["Antonio Luckwu <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/avlm/pre-commit-poetry-export"
repository = "https://github.com/avlm/pre-commit-poetry-export"
keywords = ["pre-commit", "hook", "poetry", "export", "pip", "requirements", "requirements.txt"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.8.3"
ipython = "^7.24.0"
ipdb = "^0.13.8"
[tool.poetry.scripts]
poetry-export = 'pre_commit_poetry_export.poetry_export:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"