-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.76 KB
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
[project]
name = "openprotein-docs"
version = "0.1.0"
description = "Documentation for OpenProtein"
readme = "README.md"
requires-python = ">=3.8,<3.15"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"sphinx>=7,<10",
"pydata-sphinx-theme>=0.16.1,<0.17.0",
"recommonmark>=0.7.0,<0.8.0",
"nbsphinx>=0.9.0,<0.10.0",
"sphinx_markdown_tables>=0.0.17,<0.1.0",
"sphinx_markdown_builder>=0.6.0,<0.7.0",
"sphinx-togglebutton>=0.3.0,<0.4.0",
"sphinx-copybutton>=0.5.0,<0.6.0",
"sphinxcontrib-bibtex>=2.6.0,<2.7.0",
"sphinxcontrib-httpdomain>=1.8.0,<1.9.0",
"sphinx-new-tab-link>=0.4.0,<0.5.0",
"sphinx-notfound-page>=1.1.0,<1.2.0",
"sphinx-design>=0.6.1,<0.7",
# autodoc
"openprotein-python>=0.11.1,<0.12.0",
"ipython>=9.8.0,<10",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64"]
[tool.pixi.tasks]
build = "sphinx-build source build"
[tool.pixi.feature.dev.tasks]
# install dev version of the client
dev = "sphinx-autobuild source build --port 5001"
devinstall = "pip install -e ../openprotein-python-private"
[tool.pixi.environments]
dev = ["dev"]
dev-nb = ["dev", "nb"]
[tool.pixi.dependencies]
pygments = ">=2.19.2,<3"
[dependency-groups]
dev = [
"sphinx-autobuild",
# install dev version of the client
"pip>=24.2,<25",
"hatchling>=1.26.1",
"hatch-vcs>=0.5.0,<1",
"editables>=0.5,<0.6",
"jupytext>=1.18.1,<2",
]
nb = [
"molviewspec",
"ipykernel",
# "openprotein-python @ git+https://github.com/OpenProteinAI/openprotein-python-private.git@f2bd23a05b917c7e6edccd86a624f2f6cbb9f2a1",
"seaborn",
"scipy",
]