-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (62 loc) · 1.92 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
[project]
name = "moebius"
version = "0.5"
description = "Python package for optimizing peptide sequences using Bayesian optimization (BO)"
authors = [
{ name = "Jerome Eberhardt", email = "jerome.eberhardt@unibas.ch" },
{ name = "Aidan Lees", email = "aidan.lees@unibas.ch" },
{ name = "Markus Lill", email = "markus.lill@unibas.ch" },
{ name = "Torsten Schwede", email = "tosten.schwede@unibas.ch" },
]
readme = "README.md"
requires-python = "<3.12"
keywords = [
"drug design",
"peptide",
"Bayesian optimization",
"HELM"
]
license = { text = "Apache-2.0" }
classifiers = [
'Environment :: Console',
'Environment :: Other Environment',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: OS Independent',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries'
]
dependencies = [
"botorch",
"gpytorch",
"matplotlib",
"numpy",
"numpydoc",
"pandas",
"rdkit",
"scikit-learn",
"scipy",
"sphinx == 6.2.1",
"sphinx_rtd_theme",
"torch",
"ray",
"mhfp"
]
[project.urls]
"Homepage" = "https://git.scicore.unibas.ch/schwede/mobius"
"Documentation" = "https://mobius.readthedocs.io/en/latest/"
"Source" = "https://git.scicore.unibas.ch/schwede/mobius"
[tool.setuptools]
py-modules = ['mobius']
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"