-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (57 loc) · 1.71 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (57 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=61.0", "wheel", "versioneer"]
build-backend = "setuptools.build_meta"
[project]
name = "emle-bespoke"
description = "A package for training and patching EMLE models, with routines for fitting LJ parameters. "
requires-python = ">=3.10"
keywords = ["emle", "electrostatic embedding", "qm/mm", "ml/mm", "molecular modelling", "machine learning", "openmm"]
authors = [{email = "jmorado@ed.ac.uk"},{name = "Joao Morado"}]
maintainers = [{name = "Joao Morado", email = "jmorado@ed.ac.uk"}]
classifiers = [
"License :: OSI Approved :: GPL License",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Programming Language :: Python",
]
dynamic = [
"version",
"dependencies"
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE.md"
content-type = "text/markdown"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov"
]
[project.urls]
repository = "https://github.com/michellab/emle-bespoke"
[project.scripts]
emle-bespoke-sample = "emle_bespoke.cli._sample_cli:main"
emle-bespoke-train = "emle_bespoke.cli._train_cli:main"
[tool.coverage.run]
source = ['src/emle_bespoke']
[tool.setuptools.dynamic]
version = {attr = "emle_bespoke.__version__"}
# dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
exclude = ["*__pycache__*"]
namespaces = true
[tool.setuptools]
zip-safe = false
include-package-data = false
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/emle_bespoke/_version.py"
versionfile_build = "emle_bespoke/_version.py"
tag_prefix = ""
parentdir_prefix = "emle_bespoke-"