-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
54 lines (49 loc) · 943 Bytes
/
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
[project]
name="pybindingcurve"
version="1.2.3"
description="Protein ligand binding simulation in Python"
authors = [
{name = "Steven Shave"},
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["molecular similarity", "ligand based virtual screening"]
dependencies = [
"numpy>=1.26",
"matplotlib>=3.8",
"lmfit>=1.2.2",
"mpmath>=1.3.0",
"autograd>=1.6.2",
]
[build-system]
requires=[
"setuptools>=68.2.2",
]
build-backend="setuptools.build_meta"
[tool.black]
skip-string-normalization = true
include = '''
(
^/tests/
| ^/src/
| ^/setup[.]py
)
'''
exclude = '''
(
__pycache__
|.*\.egg-info
)
'''
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Homepage" = "https://github.com/stevenshave/pybindingcurve"
[project.optional-dependencies]
dev = [
'black==24.3.0',
'pytest==8.1.1',
'build==0.10.0',
]
[tool.pytest.ini_options]
"testpaths" = "tests/test*"