-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (37 loc) · 953 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
37
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "peodd"
version = "0.4.0"
description = "Script to export the pyproject.toml dev-dependencies to a txt file."
authors = [
"Venu Vardhan Reddy Tekula <[email protected]>"
]
license = "GPL-3.0+"
readme = "README.md"
repository = "https://github.com/vchrombie/peodd"
packages = [
{ include = "peodd"},
{ include = "tests", format = "sdist" },
]
include = [
{ path = "AUTHORS", format = "sdist" },
{ path = "NEWS", format = "sdist" },
{ path = "README.md", format = "sdist" },
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/vchrombie/peodd/issues"
[tool.poetry.scripts]
peodd = 'peodd.peodd:main'
[tool.poetry.dependencies]
python = "^3.6"
tomli = "^1.0.4"
click = "^7.0"
release-tools = "^0.3.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.9.2"
coverage = "^5.5"
[build-system]
requires = [
"poetry-core>=1.0.0"
]
build-backend = "poetry.core.masonry.api"