-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (35 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
37 lines (35 loc) · 1.14 KB
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 = "country-named-entity-recognition"
version = "1.0.2"
description = "Finds countries in a string"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Thomas Wood" }]
maintainers = [{ name = "Thomas Wood" }]
keywords = ["country", "ner", "nlp", "named entity recognition", "natural language processing"]
urls = { Homepage = "https://fastdatascience.com/country-named-entity-recognition/"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9,<4.0"
dependencies = [
"pycountry>=24.6.1"
]
[project.optional-dependencies]
test = [
"pytest>=8.3.5",
"spacy>=3.8.7"
]
[build-system]
requires = ["setuptools>=61.2.0", "wheel"]
build-backend = "setuptools.build_meta"