-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 924 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 = "wordtangible"
version = "0.1.1"
description = "Python library for word concreteness and imageability analysis."
authors = ["Jason Robison <jrrobison@protonmail.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/jrrobison1/wordtangible"
repository = "https://github.com/jrrobison1/wordtangible"
keywords = ["nlp", "linguistics", "concreteness", "imageability"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
packages = [{ include = "wordtangible" }]
include = ["wordtangible/resources/*.csv"]
[tool.poetry.dependencies]
python = "^3.10"
nltk = "^3.9.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"