-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
35 lines (32 loc) · 885 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
[build-system]
requires = ["setuptools >= 42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tacl"
version = "5.3.0"
authors = [
{ name = "Jamie Norrish", email = "[email protected]" },
]
description = "Text analyser for corpus linguistics"
readme = "README.rst"
license = { file = "LICENCE" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"biopython>=1.80",
"colorlog",
"Jinja2>3.1.0",
"lxml",
"pandas",
]
[project.urls]
homepage = "https://github.com/ajenhl/tacl"
documentation = "http://tacl.readthedocs.io/en/latest/"
[project.scripts]
tacl = "tacl.__main__:main"