-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (25 loc) · 910 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
[tool.poetry]
name = "Natural-Language-Processing"
version = "0.1.0"
description = ""
license = "MIT"
authors = ["gravo-lan <alvintsolh@gmail.com>", "zifuyang <zifuy2026@student.cis.edu.hk>"]
maintainers = ["gravo-lan <alvintsolh@gmail.com>", "zifuyang <zifuy2026@student.cis.edu.hk>"]
readme = ["README.md", "LICENSE"]
repository = "https://github.com/zifuyang/Natural-Language-Processing"
keywords = ["nlp", "natural language processing", "markov chains", "markov chain"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Natural Language :: English"
]
packages = [{include = "Natural-Language-Processing"}]
[tool.poetry.dependencies]
python = "^3.10"
nltk = "^3.8.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"