-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
60 lines (54 loc) · 1.56 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["build", "dist", "KinBot.egg-info", "graphics"]
[tool.setuptools.package-data]
"kinbot.tpl" = ["*.tpl"]
[project]
name = "kinbot"
version = "2.2.3"
description = "Automated reaction kinetics for gas-phase species"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
# keywords = []
authors = [
{name="Judit Zádor", email="[email protected]"},
{name="Ruben Van de Vijver", email="[email protected]"},
{name="Carles Martí", email="[email protected]"},
{name="Clément Soulié", email="[email protected]"},
{name="Amanda Dewyer", email="[email protected]"},
]
maintainers = [
{name="Judit Zádor", email="[email protected]"},
{name="Clément Soulié", email="[email protected]"},
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Chemistry"
]
dependencies = [
"numpy>=1.17.0",
"ase>=3.19",
"networkx",
"rmsd>=1.5.1",
"sella"
]
[project.optional-dependencies]
plot = [
"matplotlib",
"pyvis",
"rdkit"
]
[project.urls]
homepage = "https://github.com/zadorlab/KinBot"
documentation = "https://github.com/zadorlab/KinBot/wiki"
[project.scripts]
kinbot = "kinbot.kb:main"
pes = "kinbot.pes:main"