-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (37 loc) · 1.34 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
[tool.poetry]
name = "discriminative_lexicon_model"
version = "2.0.3"
description = "Python-implementation of Discriminative Lexicon Model / Linear Discriminative Learning"
license = "MIT"
authors = ["Motoki Saito <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/quantling/discriminative_lexicon_model"
homepage = "https://discriminative-lexicon-model.readthedocs.io/en/latest/"
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering']
[tool.poetry.dependencies]
python = ">=3.11"
numpy = ">=1.26"
scipy = ">=1.13"
pandas = ">=2.2"
xarray = ">=2023.6"
fasttext = ">=0.9"
tqdm = ">=4.66"
setuptools = ">=72.1"
netcdf4 = ">=1.6.2"
[tool.poetry.dev-dependencies]
pytest = ">=7.4"
sphinx = ">=7.3"
sphinx_rtd_theme = ">=2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"