forked from serhii73/ukrdict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.02 KB
/
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
[tool.poetry]
name = "ukrdict"
version = "0.1.6"
description = "CLI tool for looking up Ukrainian words meaning."
authors = ["serhii73 <aserhii@protonmail.com>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/serhii73/ukrdict"
repository = "https://github.com/serhii73/ukrdict"
keywords = ["Ukraine", "Ukrainian", "dictionary", "application"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: Ukrainian",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
]
[tool.poetry.dependencies]
python = "^3.7"
beautifulsoup4 = "4.7.1"
click = "7.0"
lxml = "4.3.4"
requests = "2.22.0"
[tool.poetry.dev-dependencies]
beautifulsoup4 = "4.7.1"
click = "7.0"
lxml = "4.3.4"
pre-commit = "1.17.0"
requests = "2.22.0"
[tool.poetry.scripts]
ukrdict = "ukrdict.__main__:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"