forked from larsmans/weighwords
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (35 loc) · 1.07 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
[tool.poetry]
name = "wayward"
version = "0.3.2"
repository = "https://github.com/aolieman/wayward"
documentation = "https://wayward.readthedocs.io"
readme = "README.rst"
description = "Wayward is a Python package that helps to identify characteristic terms from single documents or groups of documents."
authors = ["Alex Olieman <alex@olieman.net>", "Lars Buitinck <>"]
license = "LGPL-3.0"
keywords = [
"natural language processing",
"language modeling",
"parsimonious language model",
"significant words language model",
"word cloud"
]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing",
"Topic :: Text Processing :: Linguistic"
]
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.15"
[tool.poetry.dev-dependencies]
pytest = "^4.5"
mypy = "^0.701"
numpy-stubs = {git = "https://github.com/numpy/numpy-stubs.git"}
recommonmark = "^0.5.0"
sphinx = "^2.1"
sphinx_rtd_theme = "^0.4.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"