-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.39 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "molecule-signature"
version = "2.1.0"
description = "Signature based molecule enumeration from morgan fingerprints"
keywords = [
"chemoinformatics",
"molecule fingerprint",
"molecule enumeration",
"molecule generation",
"reverse engineering",
"signature",
]
authors = [
{name = "Thomas Duigou", email = "thomas.duigou@inrae.fr"},
{name = "Jean-Loup Faulon", email = "jean-loup.faulon@inrae.fr"},
{name = "Guillaume Gricourt", email = "guillaume.gricourt@inrae.fr"},
{name = "Philippe Meyer", email = "philippe.meyer@inrae.fr"},
]
maintainers = [
{name = "Thomas Duigou", email = "thomas.duigou@inrae.fr"},
]
readme = "README.md"
license = {text = "MIT License"}
requires-python = ">= 3.10"
[project.scripts]
molsig = "molsig.__main__:main"
[project.urls]
Homepage = "https://github.com/brsynth/molecule-signature"
Repository = "https://github.com/brsynth/molecule-signature.git"
Issues = "https://github.com/brsynth/molecule-signature/issues"
Changelog = "https://github.com/brsynth/molecule-signature/blob/main/CHANGELOG.md"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_type = "semver2"
version_provider = "pep621"
update_changelog_on_bump = true
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.black]
line-length = 100