42 lines
706 B
Plaintext
42 lines
706 B
Plaintext
|
{% if use_poetry %}
|
||
|
[tool.poetry]
|
||
|
name = "{{ project_name }}"
|
||
|
version = "{{ package_version }}"
|
||
|
description = "{{ package_description }}"
|
||
|
|
||
|
authors = []
|
||
|
|
||
|
readme = "README.md"
|
||
|
packages = [
|
||
|
{include = "{{ package_name }}"},
|
||
|
]
|
||
|
include = ["CHANGELOG.md", "{{ package_name }}/py.typed"]
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.7"
|
||
|
httpx = ">=0.15.4,<0.23.0"
|
||
|
attrs = ">=21.3.0"
|
||
|
python-dateutil = "^2.8.0"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|
||
|
|
||
|
{% endif %}
|
||
|
[tool.black]
|
||
|
line-length = 120
|
||
|
target_version = ['py37', 'py38', 'py39']
|
||
|
exclude = '''
|
||
|
(
|
||
|
/(
|
||
|
| \.git
|
||
|
| \.venv
|
||
|
| \.mypy_cache
|
||
|
)/
|
||
|
)
|
||
|
'''
|
||
|
|
||
|
[tool.isort]
|
||
|
line_length = 120
|
||
|
profile = "black"
|