Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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__"}
4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from setuptools.command.install import install
from distutils.command.build import build

from plip.basic import config

def install_pkg_via_pip(package):
import sys
import subprocess
Expand Down Expand Up @@ -74,7 +72,7 @@ def run(self):
return

setup(name='plip',
version=config.__version__,
version='2.4.0',
description='PLIP - Fully automated protein-ligand interaction profiler',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down
Loading