-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·44 lines (42 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
executable file
·44 lines (42 loc) · 1.32 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "proteus"
version = "0.0.0"
description = "In Silico optimization of protein sequences"
license = "GPL-3.0"
authors = ["Semidán Robaina Estévez <semidan.robaina@gmail.com>"]
maintainers = ["Semidán Robaina Estévez <semidan.robaina@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/Robaina/Proteus"
repository = "https://github.com/Robaina/Proteus"
documentation = "https://github.com/Robaina/Proteus"
keywords = ["metabolism", "enzymes", "bioinformatics"]
classifiers = [
"License :: OSI Approved :: GLP-3 License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
]
packages = [{ include = "proteus", from = "src" }]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.scripts]
proteus = "proteus.cli:main"
[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 = ["proteus"]