-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (88 loc) · 3.25 KB
/
pyproject.toml
File metadata and controls
108 lines (88 loc) · 3.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "bioservices"
version = "1.16.0"
description = "Access to Biological Web Services from Python"
authors = [{name="Thomas Cokelaer", email="[email protected]"}]
license = "GPLv3"
readme = "README.rst"
keywords = ["BioServices", "WebServices", "Biology", "ChEBI", "UniChem", "Kegg", "KEGG", "BioModels", "EUtils", "UniProt", "PICR", "ArrayExpress", "MUSCLE", "QuickGO", "PDB", "Blast", "BioMART", "PantherDB", "MIRIAM", "BioMart", "GeneProf", "ChEMBL", "ChemSpider", "HGNC", "PathwayCommons", "Rhea", "Ensembl"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
requires-python = ">=3.9,<4.0"
dependencies = [
"click (>=8.1.8,<9.0.0)",
"appdirs (>=1.4.4,<2.0.0)",
"matplotlib (>=3.9)",
"easydev (>=0.13.3,<0.14.0)",
"tqdm (>=4.67.1,<5.0.0)",
"rich-click (>=1.8.5,<2.0.0)",
"colorlog (>=6.9.0,<7.0.0)",
"beautifulsoup4 (>=4.12.3,<5.0.0)",
"grequests (>=0.7.0,<0.8.0)",
"requests (>=2.32.3,<3.0.0)",
"lxml (>=5.3.0,<6.0.0)",
"requests-cache (>=1.2.1,<2.0.0)",
"wrapt (>=1.17.2,<2.0.0)",
"xmltodict (>=0.14.2,<0.15.0)",
"pandas (>2.2)",
"numpy (>=1.23.2,<2.4)"
]
[project.optional-dependencies]
testing = [
"pytest>=8",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.5.0",
"pytest-mock>=3.12.0",
"pytest-timeout>=2.2.0",
"coveralls>=3.3.1",
"flaky>=3.7.0",
"nbmake>=1.5",
]
[project.scripts]
bioservices = "bioservices.main:main"
[project.urls]
Homepage = "https://bioservices.readthedocs.io"
Repository = "https://github.com/cokelaer/bioservices"
Issues = "https://github.com/cokelaer/bioservices/issues"
Documentation = "https://bioservices.readthedocs.io"
[tool.poetry.group.dev.dependencies]
pytest = "^8"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.5.0"
pytest-mock = "^3.12.0"
pytest-timeout = "^2.2.0"
pytest-runner = "^6.0.1"
coveralls = "^3.3.1"
flaky = "^3.7.0"
[tool.poetry.group.doc.dependencies]
sphinx = ">3"
sphinx-rtd-theme = "^2.0.0"
sphinx-gallery = "^0.15.0"
[tool.ruff.lint.per-file-ignores]
"src/bioservices/__init__.py" = ["F401"]
[tool.pytest.ini_options]
addopts = "--timeout=30"
markers = [
"notebook: marks tests as notebook execution tests (deselect with '-m \"not notebook\"')",
"flaky: marks tests that may fail intermittently due to network or service issues",
"network: marks tests that require a live network connection to an external service",
]