-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (64 loc) · 1.59 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
67
68
69
70
71
72
73
74
75
76
[project]
name = "openprotein_python"
packages = [{ include = "openprotein" }]
version = "0.6.1"
description = "OpenProtein Python interface."
license = "MIT"
readme = "README.md"
homepage = "https://docs.openprotein.ai/"
authors = [{ name = "Mark Gee", email = "markgee@ne47.bio" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests>=2.32.3,<3",
"pydantic>=2.5,<3",
"tqdm>=4.66.5,<5",
"pandas>=2.2.2,<3",
"numpy>=1.9,<3",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"ipykernel>=6.29.5,<7",
"pytest>=8.3.3,<9",
"pandas-stubs>=2.1.4.240909,<3",
"matplotlib>=3.9.2,<4",
"scipy>=1.14.1,<2",
"hatchling>=1.26.1", "editables>=0.5,<0.6", "seaborn>=0.13.2,<0.14",
]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "linux-aarch64", "osx-arm64"]
[tool.pixi.dependencies]
python = ">=3.10"
# allow installing as editable
[tool.pixi.feature.dev.dependencies]
pip = ">=24.2,<25"
[tool.pixi.feature.dev.tasks]
postinstall = "pip install --no-build-isolation --no-deps --disable-pip-version-check -e ."
[tool.pixi.environments]
dev = ["dev"]
[build-system]
requires = ["hatchling>=1.26.1"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
packages = ["openprotein"]
[tool.hatch.build.targets.wheel]
packages = ["openprotein"]
[tool.hatch.env]
requires = [
"hatch-conda>=0.5.2",
]
[tool.hatch.envs.conda]
type = "conda"
command = "micromamba"
dependencies = [
"conda-build>=24.9.0",
]
requires = [
"hatch-conda-build",
]
[tool.pyright]
typeCheckingMode = "basic"