-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 808 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 808 Bytes
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
[tool.poetry]
name = "python-datamuse"
version = "2.0.1"
description = "Python wrapper for the Datamuse API"
authors = [
"Guthrie McAfee Armstrong <[email protected]>",
"Margaret Sy",
]
license = "MIT"
maintainers = [
"Guthrie McAfee Armstrong <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/gmarmstrong/python-datamuse"
keywords = ["datamuse", "linguistics", "language", "wrapper"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
]
packages = [
{include = "datamuse"}
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
responses = "^0.22.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"