-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 907 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (34 loc) · 907 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
35
36
37
[project]
name = "datamuse"
version = "0.3.1"
authors = [
{ name="Bivas Kumar", email="thetrotfreak@yahoo.com" },
]
description = "datamuse is a simple wrapper around the datamuse api https://www.datamuse.com/api/"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"certifi>=2026.1.4",
"urllib3>=2.6.3",
]
[project.urls]
Homepage = "https://pypi.org/project/datamuse"
Source = "https://github.com/thetrotfreak/datamuse"
Documentation = "https://thetrotfreak.github.io/datamuse"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"mkdocs-material>=9.7.1",
"mkdocstrings-python>=2.0.1",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
]