-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (42 loc) · 2.3 KB
/
pyproject.toml
File metadata and controls
71 lines (42 loc) · 2.3 KB
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TS_pipeline"
version = "0.9.0"
description = "(Semi)automatic pipeline for TS search in molecular photoswitches"
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.10.8"
authors = [
{ name = "Roman Peshkov", email = "roman.peshkov@kemi.uu.se" },
{ name = "Jorn Steen", email = "jorn.steen@kemi.uu.se" }
]
dependencies = [
"rdkit==2024.9.6",
"pysisyphus==0.7.6.post2",
"numpy==1.26.4"
]
keywords = [
"science",
"transition state",
"computational"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: Linux",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Computational Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://github.com/CrespiLab/TS_pipeline"
[project.scripts]
tspipe = "ts_pipeline.cli:main"
ts_data_collector = "ts_pipeline.core.data_collector:main"
fragments_combiner = "ts_pipeline.utils.fragments_combiner:main"
cdxml_to_xyz = "ts_pipeline.utils.cdxml_to_xyz:main"
[tool.setuptools]
packages = ["ts_pipeline"]