-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (28 loc) · 949 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
[tool.poetry]
name = "pais-accomplishments-tool"
version = "1.3.0-beta"
description = "A small tool for generating and transformation accomplishments from BibTex format files"
authors = [
"Roman Lupashko <[email protected]>",
]
packages = [{include = "pais-accomplishments-tool"}]
readme = "readme.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Free for non-commercial use",
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Markup'
]
license = "CC-BY-NC-SA-4.0"
repository = "https://github.com/CuberHuber/pais-accomplishments-tool"
[tool.poetry.dependencies]
python = "^3.11"
bibtexparser = "2.0.0b7"
pymorphy3 = "2.0.1"
pymorphy3-dicts-ru = "2.4.417150.4580142"
pyyaml = "^6.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"