forked from JetBrains-Research/YouTokenToMe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 1.18 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
40
41
42
43
44
45
[tool.poetry]
name = "youtokentome"
version = "1.0.8"
description = "FL version of YTTM"
license = "MIT"
authors = ["Ivan Belonogov"]
maintainers = ["Yaroslav Sokolov <yaroslav.sokolov@jetbrains.com>"]
readme = "README.md"
repository = "https://github.com/JetBrains-Research/YouTokenToMe"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Cython",
"Programming Language :: C++",
]
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = "^3.6"
setuptools = ">=32.0.0"
click = ">=7.0"
tabulate = ">=0.8.5"
cython = ">=0.29.14"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = ">=4.3.1"
tokenizers = "*"
[tool.poetry.scripts]
yttm = "youtokentome.yttm_cli:main"
[build-system]
requires = ["poetry-core", "Cython>=0.29.21", "setuptools>=32.0.0"]
build-backend = "poetry.core.masonry.api"