-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 967 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
30
31
32
33
34
35
36
[project]
name = 'dialectid'
description = "Set of algorithms to detect the dialect of a given text"
readme = "README.rst"
dependencies = [
'numpy',
'scikit-learn>=1.3.0',
'microtc',
'b4msa',
'EvoMSA'
]
dynamic = ['version']
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.setuptools.dynamic]
version = {attr = 'dialectid.__version__'}
[tool.setuptools]
packages = ['dialectid', 'dialectid.tests']
[project.urls]
Homepage = "https://ingeotec.github.io/dialectid"
Repository = "https://github.com/INGEOTEC/dialectid"
Issues = "https://github.com/INGEOTEC/dialectid/issues"