-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
72 lines (63 loc) · 1.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = [
"setuptools>=61.2",
"versioningit",
]
build-backend = "setuptools.build_meta"
[project]
name = "lomap2"
description = "Lead Optimization Mapper 2"
readme = "README.md"
authors = [{name = "Gaetano Calabro and David Mobley"}]
maintainers = [{name = "The Open Free Energy developers", email = "[email protected]"}]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
urls = {Homepage = "https://github.com/OpenFreeEnergy/Lomap"}
keywords = ['alchemical free energy', 'setup', 'perturbation', 'network']
requires-python = ">= 3.9"
dependencies = [
"numpy",
"networkx",
"matplotlib",
"rdkit",
"gufe>=0.9.0",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"codecov",
]
graphviz = ["pygraphviz"]
[project.scripts]
lomap = "lomap.dbmol:startup"
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.versioningit]
default-version = "1+unknown"
[tool.versioningit.format]
distance = "{base_version}+{distance}.{vcs}{rev}"
dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
distance-dirty = "{base_version}+{distance}.{vcs}{rev}.dirty"
[tool.versioningit.vcs]
method = "git"
match = ["*"]
default-tag = "0.0.0"