-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
86 lines (79 loc) · 2.54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "linchemin"
version = "2.2.5"
description = "Toolkit to create, manipulate, and query networks of Chemical Reactions and Chemicals"
license = { file = "LICENSE" }
authors = [
{ name = "Marco Stenta", email = "marco.stenta@syngenta.com" },
{ name = "Marta Pasquini", email = "marta.pasquini@syngenta.com" },
]
readme = "README.md"
# https://pypi.org/classifiers/
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Chemistry",
]
keywords = ["reaction", "chemoinformatics", "computer-aided synthesis planning"]
requires-python = ">=3.8"
dependencies = [
"dynaconf",
# NOTE: hdbscan>=0.8.29 is required for compatibility with joblib 1.2.0.
"hdbscan>=0.8.29",
"joblib",
"networkx",
"numpy",
"pandas",
"pydantic>=1,<2",
"pydot",
"pyyaml",
"requests",
"rdchiral",
"rdkit>=2022.3",
"scikit-learn",
]
[project.optional-dependencies]
dev = [
"bumpver",
"flake8==6.0.0",
"isort==5.12.0",
"pre-commit==3.2.*",
"pytest-cov",
"pytest",
"sphinx",
]
[project.urls]
homepage = "https://linchemin.github.io"
repository = "https://github.com/syngenta/linchemin"
[project.scripts]
linchemin = "linchemin.interfaces.cli:linchemin_cli"
linchemin_configure = "linchemin.configuration.config:configure"
[tool.isort]
atomic = true
py_version = "38"
skip_gitignore = true
[tool.bumpver]
current_version = "2.2.5"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"docs/source/conf.py" = ['version = "{version}"']