-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.6 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
[project]
name = "cryosparc-tools"
version = "4.6.1"
description = "Toolkit for interfacing with CryoSPARC"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name = "Structura Biotechnology Inc.", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: C",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
license = { file = "LICENSE" }
dependencies = ["numpy >= 1.15, < 3.0", "typing-extensions >= 3.7"]
[project.optional-dependencies]
dev = [
"build",
"cython",
"httpretty",
"pre-commit",
"pyright",
"pytest-benchmark",
"pytest-xdist[psutil]",
"pytest",
"ruff",
"setuptools",
]
build = ["build", "autodocsumm", "cython", "jupyter-book"]
[project.urls]
Homepage = "https://tools.cryosparc.com"
Documentation = "https://tools.cryosparc.com"
Repository = "https://github.com/cryoem-uoft/cryosparc-tools"
Changelog = "https://github.com/cryoem-uoft/cryosparc-tools/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["cryosparc"]
[build-system]
requires = ["setuptools", "cython"]
build-backend = "setuptools.build_meta"
[tool.pyright]
include = ["cryosparc", "tests", "setup.py"]
[tool.ruff]
line-length = 120
extend-include = ["*.ipynb"]
extend-exclude = [".venv*", "cryosparc/include"]