-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.01 KB
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
[tool.poetry]
name = "overview"
version = "0.1.0"
description = "Overview Desktop Application"
readme = "README.md"
homepage = "https://paper-lark.github.io/python-overview-project/"
repository = "https://github.com/paper-lark/python-overview-project"
keywords = ["tkinter", "application"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Natural Language :: Russian",
"Topic :: Office/Business"
]
authors = ["Max Zhuravsky <paperlark@icloud.com>", "Alexander Dimitrienko <aleksander.dimit@gmail.com>"]
license = "GPL-3.0"
[tool.poetry.scripts]
overview = 'overview.app:run'
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.25.1"
Babel = "^2.9.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.9.0"
pydocstyle = "^6.0.0"
isort = "^5.8.0"
pytest = "^6.2.4"
pytest-mock = "^3.6.1"
pytz = "^2021.1"
Sphinx = "^4.0.2"
pytest-cov = "^2.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"