-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (44 loc) · 1.39 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
[project]
name = "quantum-docking"
version = "0.0.1"
authors = [{ name="Noé Bosc-Haddad", email="[email protected]"}, {name="Mathieu Garrigues", email="[email protected]"}, {name="Victor Onofre", email="[email protected]"},]
description = "As part of the Blaise Pascal's [Re]Generative Quantum Challenge, we attempt to use neutral atoms to speed up molecular docking."
readme = "README.md"
requires-python = ">=3.11"
classifiers = ["Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",]
[project.urls]
"Homepage" = "https://pasqal-quantum-challenge-platform.bemyapp.com/#/projects/6508735070156e9993122511"
#================================================================
[tool.black]
line-length = 100
[tool.pycln]
all = true
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 100
multi_line_output = 3
use_parentheses = true
[tool.ruff]
line-length = 100
[tool.poetry]
name = "quantum-docking"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
jupyter = "^1.0.0"
networkx = "^3.3"
scipy = "<1.13"
pulser = "^0.19.0"
rdkit = "^2024.3.5"
pmapper = "^1.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"