-
Notifications
You must be signed in to change notification settings - Fork 61
/
pyproject.toml
83 lines (66 loc) · 2.4 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
77
78
79
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "bioservices"
version = "1.13.0"
description = "Access to Biological Web Services from Python"
authors = ["Thomas Cokelaer <[email protected]>"]
license = "GPLv3"
readme = ["README.rst", "LICENSE"]
keywords = ["BioServices", "WebServices", "Biology", "BioDBNet", "ChEBI", "UniChem", "Kegg", "KEGG", "BioModels", "EUtils", "UniProt", "PICR", "ArrayExpress", "MUSCLE", "QuickGO", "PDB", "PSICQUIC", "Blast", "BioMART", "PantherDB", "BioGRID", "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 :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[tool.poetry.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://bioesrvices.readthedocs.io"
[tool.poetry.dependencies]
python = "^3.8"
appdirs = "^1.4.4"
click = "^8.1.7"
easydev = "^0.12.1"
matplotlib = "<4"
tqdm = "^4.66.1"
rich-click = "^1.7.2"
beautifulsoup4 = "^4.12.3"
colorlog = "^6.8.2"
grequests = "^0.7.0"
requests = "^2.31.0"
pandas = ">=0.21.1"
lxml = "^5.1.0"
xmltodict = "^0.13.0"
wrapt = "^1.16.0"
requests-cache = "^1.1.1"
suds-community = "^1.1.2"
[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"