forked from CederGroupHub/text2chem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (26 loc) · 824 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool]
[tool.bumpversion]
current_version = "0.0.3"
commit = "true"
tag = "true"
tag_name = "v{new_version}"
[tool.setuptools_scm]
[project]
name = "text2chem"
license = { file = "LICENSE" }
authors = [
{ name = "Ceder Research Group", email = "[email protected]" },
]
maintainers = [
{ name = "Luca Foppiano", email = "[email protected]" }
]
description = "RegEx-based text parser that converts chemical terms and material entities into chemical datastructure."
readme = "README.md"
dynamic = ['version']
[project.urls]
Homepage = "https://github.com/lfoppiano/text2chem"
Repository = "https://github.com/lfoppiano/text2chem"
Changelog = "https://github.com/lfoppiano/text2chem/blob/main/CHANGELOG.md"