forked from Goosang-Yu/BindCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.43 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
[build-system]
requires = ["hatchling >= 1.13.0"]
build-backend = "hatchling.build"
[project]
name = "BindCraft"
description = "BindCraft: User friendly and accurate binder design pipeline"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Martin Pacesa", email = "bc_maintainer@gmail.com" },
]
keywords = [
"deep-learning",
"AlphaFold",
"Protein",
"Binder",
"ai",
"python",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Programming Language :: Python",
]
dependencies = [
'pyrosetta-installer',
'biopython == 1.79',
'scipy < 1.13.0',
'pdbfixer',
'seaborn',
'tqdm',
'jupyter',
'ffmpeg',
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/martinpacesa/BindCraft"
Repository = "https://github.com/martinpacesa/BindCraft"
Source = "https://github.com/martinpacesa/BindCraft"
Tracker = "https://github.com/martinpacesa/BindCraft/issues"
[tool.hatch.version]
path = "bindcraft/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
"/tests",
"/database/metadata",
]
[tool.hatch.build.targets.wheel]
packages = ["bindcraft"]