-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
36 lines (32 loc) · 931 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
35
36
[tool.poetry]
name = "convertemppy"
version = "4.0.0"
description = "Easily convert between temperatures!"
authors = ["ttimbers <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/ttimbers/convertempPy"
repository = "https://github.com/ttimbers/convertempPy"
documentation = 'https://convertempPy.readthedocs.io'
keywords = ["temperature", "conversion"]
license = "MIT"
packages = [
{ include = "convertempPy"},
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^5.3.5"
pytest-cov = "^3.0.0"
codecov = "^2.0.16"
python-semantic-release = "^4.6.0"
flake8 = "^3.7.9"
sphinx = "^2.4.3"
sphinxcontrib-napoleon = "^0.7"
[tool.semantic_release]
version_variable = "convertempPy/__init__.py:__version__"
version_source = "commit"
upload_to_pypi = "false"
patch_without_tag = "true"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"