-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.86 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
53
54
55
56
57
58
[tool.poetry]
name = "pdbeccdutils"
version = "1.0.3"
description = "Toolkit to parse and process small molecules in wwPDB"
authors = ["Protein Data Bank in Europe <pdbehelp@ebi.ac.uk>"]
license = "Apache License 2.0."
readme = "README.md"
repository = "https://github.com/PDBeurope/ccdutils"
documentation = "https://pdbeurope.github.io/ccdutils/"
keywords = ["PDB", "ligand", "small molecule", "complex", "CCD", "PRD", "CLC"]
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Development Status :: 5 - Production/Stable",
]
[tool.poetry.dependencies]
python = ">=3.10,<4"
pillow = ">=10.4.0"
scipy = ">=1.14.1"
numpy = ">=1.26.4"
requests = ">=2.32.3"
gemmi = ">=0.6.6"
networkx = ">=3.3"
rdkit = ">=2023.9.6"
[tool.poetry.scripts]
process_components_cif = "pdbeccdutils.scripts.process_components_cif_cli:main"
setup_pubchem_library = "pdbeccdutils.scripts.setup_pubchem_library_cli:main"
read_boundmolecule = "pdbeccdutils.scripts.boundmolecule_cli:run"
[tool.poetry.group.tests.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
pre-commit = "^3.8.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.0.0"
sphinx-rtd-theme = "^2.0.0"
sphinx-autodoc-typehints = "^2.3.0"
sphinx-markdown-tables = "^0.0.17"
myst-parser = "^4.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"