-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
34 lines (29 loc) · 1.02 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "argumentation-mining-transformers-module"
version = "1.0.1"
authors = [
{ name="Cristian Cardellino", email="[email protected]" },
]
description = "Module to train Transformer-based Argumentation Mining models"
readme = "README.md"
requires-python = ">=3.10.8"
dynamic = ["dependencies", "optional-dependencies"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)"
]
[project.urls]
Homepage = "https://github.com/crscardellino/argumentation-mining-transformers"
Issues = "https://github.com/crscardellino/argumentation-mining-transformers/issues"
[tool.black]
extend-exclude = '\w*.ipynb'
line-length = 100
[tool.setuptools.packages.find]
include = ["amtm*"]
exclude = ["*venv*", "*env*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = { file = ["dev-requirements.txt"] }