-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (73 loc) · 2.23 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "rnc"
version = "0.10.0"
description = "API for Russian National Corpus"
authors = ["kunansy <kolobov.kirill@list.ru>"]
license = "MIT"
readme = "README.md"
homepage = "https://kunansy.github.io/RNC/"
repository = "https://github.com/kunansy/RNC/"
documentation = "https://kunansy.github.io/RNC/"
keywords = [
"api", "corpus", "ruscorpora",
"linguistics", "russian-national-corpus"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Natural Language :: Bulgarian",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: Chinese (Traditional)",
"Natural Language :: Czech",
"Natural Language :: English",
"Natural Language :: Finnish",
"Natural Language :: French",
"Natural Language :: German",
"Natural Language :: Italian",
"Natural Language :: Latvian",
"Natural Language :: Lithuanian",
"Natural Language :: Polish",
"Natural Language :: Spanish",
"Natural Language :: Swedish",
"Natural Language :: Ukrainian",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
packages = [
{ include = "rnc" },
]
exclude = ["tests/"]
[tool.poetry.urls]
"Changelog" = "https://github.com/kunansy/RNC/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/kunansy/RNC/issues"
"Funding" = "https://paypal.me/ansth"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
bs4 = "~0.0.1"
beautifulsoup4 = "~4.11.1"
aiohttp = "~3.8.1"
aiofiles = "~0.8.0"
lxml = "~4.9.1"
ujson = "~5.4.0"
types-aiofiles = "~0.8.4"
types-ujson = "~5.4.0"
[tool.poetry.dev-dependencies]
mypy = "~0.971"
flake8 = "~5.0.4"
tox = "~3.25.1"
tox-gh-actions = "~2.9.1"
pytest = "~7.0.1"
bumpversion = "~0.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"