-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 996 Bytes
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=64", "setuptools-scm>=8" ]
[project]
name = "harbor"
description = "A port for docking evaluation and assessment"
readme = "README.md"
authors = [
{ name = "Alexander Matthew Payne", email = "alex.payne@choderalab.org" },
]
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [ "version" ]
dependencies = [ ]
urls."Bug Tracker" = "https://github.com/choderalab/harbor/issues"
urls."Homepage" = "https://github.com/choderalab/harbor"
scripts.harbor = "harbor.cli:cli"
[tool.setuptools.packages.find]
where = [ "." ]
[tool.setuptools_scm]
fallback_version = "0.0.0"