-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
37 lines (34 loc) · 1.16 KB
/
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
31
32
33
34
35
36
37
[tool.poetry]
name = "spacy_fastlang"
version = "2.1.0"
description = "Language detection using FastText and Spacy"
authors = ["Thomas Thiebaud <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/thomasthiebaud/spacy-fastlang"
repository = "https://github.com/thomasthiebaud/spacy-fastlang"
documentation = "https://github.com/thomasthiebaud/spacy-fastlang"
keywords = ["spacy", "fasttext", "language", "detection"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
]
[tool.poetry.dependencies]
python = "^3.8"
spacy = "^3.0.0"
fasttext-wheel = "^0.9.2"
[tool.poetry.dev-dependencies]
black = "^23.7.0"
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"