-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (71 loc) · 2 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
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bioblend"
dynamic = ["version"]
description = "Library for interacting with the Galaxy API"
readme = "README.rst"
license = "MIT"
license-files = [
"LICENSE",
]
authors = [
{ name = "Enis Afgan", email = "afgane@gmail.com" },
]
maintainers = [
{ name = "Nicola Soranzo", email = "nicola.soranzo@earlham.ac.uk" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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 :: Scientific/Engineering :: Bio-Informatics",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = [
"PyYAML",
"requests>=2.20.0",
"requests-toolbelt>=0.5.1,!=0.9.0",
"tuspy",
"typing-extensions",
]
[project.optional-dependencies]
testing = [
"pytest",
]
[project.scripts]
"bioblend-galaxy-tests" = "bioblend._tests.pytest_galaxy_test_wrapper:main"
[project.urls]
Homepage = "https://bioblend.readthedocs.io/"
Documentation = "https://bioblend.readthedocs.io/"
"Bug Tracker" = "https://github.com/galaxyproject/bioblend/issues"
"Source Code" = "https://github.com/galaxyproject/bioblend"
[tool.black]
include = '\.pyi?$'
line-length = 120
target-version = ['py310']
[tool.darker]
isort = true
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
extend-select = ["E", "F", "B", "C4", "G", "ISC", "UP"]
# Exceptions:
# B9 flake8-bugbear opinionated warnings
# E501 is line length (delegated to black)
ignore = ["B9", "BLE001", "E501", "I001", "N999", "RET501", "TRY002", "TRY004"]
[tool.setuptools.dynamic]
version = { attr = "bioblend.__version__" }
[tool.setuptools.package-data]
"bioblend" = [
"_tests/data/*",
"py.typed",
]