-
Notifications
You must be signed in to change notification settings - Fork 64
/
pyproject.toml
36 lines (30 loc) · 949 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.bumpversion]
current_version = "0.3.4"
commit = "true"
tag = "true"
tag_name = "v{new_version}"
[project]
name = "delft"
description = "a Deep Learning Framework for Text"
readme = "Readme.md"
authors = [
{ name = "Patrice Lopez", email = "[email protected]" }
]
maintainers = [
{ name = "Patrice Lopez", email = "[email protected]" },
{ name = "Luca Foppiano", email = "[email protected]" }
]
requires-python = ">=3.7"
dynamic = ['version', "dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
classifiers = {file = ["classifiers.txt"]}
[project.urls]
Homepage = "https://github.com/kermitt2/delft"
Repository = "https://github.com/kermitt2/delft"
Changelog = "https://github.com/kermitt2/delft"
[tool.setuptools.packages.find]
exclude = ["test", "*.test", "*.test.*"]