-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.42 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools","pip","requests"]
[project]
name = "plip"
license = "GPL-2.0-only"
dynamic = ["version"]
description = "PLIP - Fully automated protein-ligand interaction profiler"
readme = "README.md"
requires-python = ">=3.6"
authors = [
{name = "PharmAI GmbH", email = "hello@pharm.ai"}
]
maintainers = [
{name = "PharmAI GmbH", email = "hello@pharm.ai"}
]
keywords = ["bioinformatics", "protein-ligand", "interactions", "molecular-modeling"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"numpy>=1.13.3",
"lxml>=4.2.1",
"openbabel>=3.1.1",
]
[project.urls]
Homepage = "https://github.com/pharmai/plip"
Repository = "https://github.com/pharmai/plip"
[project.scripts]
plip = "plip.plipcmd:main"
[tool.setuptools.packages.find]
include = ["plip*"]
[tool.setuptools.dynamic]
version = {attr = "plip.basic.config.__version__"}