forked from SekouDiaoNlp/pylexique
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (71 loc) · 2.38 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pylexique"
version = "1.5.0"
description = "Pylexique is a Python wrapper around Lexique383"
authors = ["SekouDiaoNlp <[email protected]>"]
maintainers = ["SekouDiaoNlp <[email protected]>"]
license = "MIT license"
keywords = ["pylexique"]
classifiers = ["Development Status :: 5 - Production/Stable", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Education", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Utilities", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Natural Language :: French", "Operating System :: OS Independent", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10"]
homepage = "https://github.com/SekouDiaoNlp/pylexique"
repository = "https://github.com/SekouDiaoNlp/pylexique"
documentation = "https://pylexique.readthedocs.io/en/latest/readme.html"
readme = "README.rst"
packages = [
{ include = 'pylexique' },
{ include = 'tests' },
]
include = [
{ path = '*.rst', format = 'sdist' },
{ path = 'docs/*.*', format = 'sdist' },
]
exclude = [
{ path = '*.rst', format = 'wheel' },
]
[tool.poetry.scripts]
pylexique = 'pylexique.cli:main'
[tool.poetry.dependencies]
python = ">=3.7.1,<4"
click = ">=8.0.3"
colorama = "*"
dataclasses = {version = ">=0.6", python = "<3.7"}
joblib = "^1.0.1"
pandas = "^1.3.4"
tqdm = "*"
[tool.poetry.dev-dependencies]
pip = "^21.3.1"
wheel = "^0.37.0"
setuptools = "==49.6.*,>=49.6.0"
bumpversion = "^0.6.0"
watchdog = "^2.1.6"
flake8 = "^4.0.1"
tox = "^3.24.4"
coverage = "^6.0.2"
Sphinx = "^4.2.0"
docutils = "<0.18"
twine = "^3.4.2"
joblib = "^1.1.0"
pytest = "^6.2.5"
pytest-runner = "^5.3.1"
bandit = "^1.7.0"
mypy = "^0.910"
Cython = "^0.29.24"
pytest-cov = "^3.0.0"
codecov = "^2.1.12"
[tool.bandit]
skips = ["B311", ]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.mypy]
warn_unused_configs = true
strict = true
ignore_missing_imports = true
show_error_codes = true
files = "pylexique/"