-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
executable file
·46 lines (43 loc) · 1.38 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "brendapyrser"
version = "0.0.4"
description = "Tools to parse the BRENDA database"
license = "Apache-2.0"
authors = ["Semidán Robaina Estévez <[email protected]>"]
maintainers = ["Semidán Robaina Estévez <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/robaina/BRENDApyrser"
repository = "https://github.com/robaina/BRENDApyrser"
documentation = "https://robaina.github.io/BRENDApyrser"
keywords = ["BRENDA", "metabolism", "enzymes", "bioinformatics"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
]
packages = [{ include = "brendapyrser", from = "src" }]
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.20.2"
pandas = "^1.2.4"
importlib-metadata = "^4.0.1"
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # mccabe complexity
"E999", # match statement is not yet supported
"W605", # ASCII art, verbatim text
]
[tool.ruff.isort]
known-first-party = ["brendapyrser"]