-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "polypharm"
description = "A Python-based library to perform IFD and MMGBSA calculations on different targets using a polypharmacological approach."
readme = "README.md"
authors = [
{ name = "Mauricio Bedoya", email = "mbedoya@ucm.cl" },
{ name = "Francisco Adasme", email = "fadasme@ucm.cl" },
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = [
"computational-chemistry",
"polypharmacology",
"molecular-docking",
"induced-fit",
"free-energy-calculations",
]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = ["pandas >= 1.4.3", "jinja2 >= 3.1.2"]
[tool.setuptools.dynamic]
version = { attr = "polypharm.__version__" }
[project.optional-dependencies]
dev = ["black", "isort", "sphinx", "sphinx-rtd-theme"]
[project.urls]
Homepage = "http://polypharm.rtfd.io/"
Repository = "https://github.com/ucm-lbqc/polypharm"
[project.scripts]
polypharm = "polypharm.__main__:main"