Skip to content

Commit 4c43d0b

Browse files
authored
Merge pull request #74 from rdkit/mmpdb-3.1.3-dev
mmpdb 3.1.3 dev Update build system to hatchling
2 parents 89cb52a + cfb2d03 commit 4c43d0b

File tree

9 files changed

+53
-164
lines changed

9 files changed

+53
-164
lines changed

LICENSE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
mmpdb - matched molecular pair database generation and analysis
22

33

4-
Copyright (c) 2015-2019 F. Hoffmann-La Roche Ltd., distributed under the
4+
Copyright (c) 2015-2025 F. Hoffmann-La Roche Ltd., distributed under the
55
3-clause BSD license license, below.
66

77
Portions may be copyright (c) 2012-2013 by GlaxoSmithKline Research &
@@ -23,7 +23,7 @@ license. These are the files peewee.py and playhouse/*.py.
2323
Unless otherwise noted, all files in this directory and all
2424
subdirectories are distributed under the following license:
2525

26-
Copyright (c) 2015-2019, F. Hoffmann-La Roche Ltd.
26+
Copyright (c) 2015-2025, F. Hoffmann-La Roche Ltd.
2727

2828
Redistribution and use in source and binary forms, with or without
2929
modification, are permitted provided that the following conditions are

MANIFEST

Lines changed: 0 additions & 57 deletions
This file was deleted.

MANIFEST.in

Lines changed: 0 additions & 27 deletions
This file was deleted.

PKG-INFO

Lines changed: 0 additions & 18 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# mmpdb 3.1.2 - matched molecular pair database generation and analysis
1+
# mmpdb 3.1.3 - matched molecular pair database generation and analysis
22

33

44
## Synopsis
@@ -12,7 +12,7 @@ property changes and generate new molecular structures.
1212

1313
## Installation
1414

15-
mmpdb 3.1.2 must be installed before use. (Earlier versions of mmpdb
15+
mmpdb 3.1.3 must be installed before use. (Earlier versions of mmpdb
1616
could be run in-place, in the top-level directory.) This will also
1717
ensure that the SciPy, peewee, and click packages are installed.
1818

mmpdblib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.1.2"
1+
__version__ = "3.1.3"

pyproject.toml

Lines changed: 48 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,52 @@
11
[build-system]
2-
requires = ["setuptools >= 40.8.0", "wheel", "click"]
3-
build-backend = "setuptools.build_meta:__legacy__"
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
5+
[project]
6+
name = "mmpdb"
7+
dynamic = ["version"]
8+
description = "A package to identify matched molecular pairs and use them to predict property changes"
9+
readme = "README.md"
10+
license-files = ["LICENSE.txt"]
11+
requires-python = ">=3.10"
12+
authors = [
13+
{name = "Andrew Dalke", email = "dalke@dalkescientific.com"},
14+
]
15+
maintainers = [
16+
{name = "Jerome (chem-bio)", email = "rdkit-discuss@lists.sourceforge.net"},
17+
{name = "Christian Kramer", email = "rdkit-discuss@lists.sourceforge.net"},
18+
]
19+
keywords = [
20+
"MMP",
21+
"cheminformatics",
22+
"matched molecular pair",
23+
]
24+
classifiers = [
25+
"Development Status :: 5 - Production/Stable",
26+
"Environment :: Console",
27+
"Intended Audience :: Science/Research",
28+
"Operating System :: Unix",
29+
"Programming Language :: Python :: 3",
30+
"Topic :: Scientific/Engineering :: Chemistry",
31+
]
32+
dependencies = [
33+
"click",
34+
"peewee >= 3.0",
35+
"rdkit >= 2024.3",
36+
"scipy",
37+
]
38+
39+
[project.scripts]
40+
mmpdb = "mmpdblib.cli:main"
41+
42+
[project.urls]
43+
Homepage = "https://github.com/rdkit/mmpdb"
44+
45+
[tool.hatch.version]
46+
path = "mmpdblib/__init__.py"
47+
48+
[tool.hatch.build]
49+
packages = ["mmpdblib"]
450

551
[tool.black]
652
line-length = 120

setup.cfg

Lines changed: 0 additions & 49 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)