-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.28 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "emdb"
version = "0.1.10"
description = "A Python client for accessing the Electron Microscopy Data Bank (EMDB)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache 2"}
authors = [
{ name = "Neli Fonseca", email = "neli@ebi.ac.uk" }
]
keywords = ["EMDB", "Electron Microscopy", "Bioinformatics", "Client"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = [
"requests>=2.0,<3.0",
"matplotlib>=3.5,<4.0",
"pandas>=2.3,<3.0",
"pydantic>=2.0,<3.0",
]
[project.urls]
"Homepage" = "https://www.ebi.ac.uk/emdb/"
"Documentation" = "https://emdb.readthedocs.io/en/latest/"
"Repository" = "https://github.com/emdb-empiar/emdb-api-wrapper"
"Bug Tracker" = "https://github.com/emdb-empiar/emdb-api-wrapper/issues"
[project.optional-dependencies]
test = [
"pytest>=8.0",
"pytest-mock>=3.0",
"pytest-cov>=4.0",
"responses>=0.20",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--tb=short",
]