-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (41 loc) · 1.18 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
[tool.poetry]
name = "gecos"
version = "2.0.0"
description = "Generated color schemes for sequence alignment visualizations"
readme = "README.rst"
license = "BSD-3-Clause"
authors = ["Patrick Kunzmann <patrick.kunzm@gmail.com>"]
homepage = "https://gecos.biotite-python.org"
repository = "https://github.com/biotite-dev/gecos"
documentation = "https://gecos.biotite-python.org"
keywords = [
"Bioinformatics",
"Computational biology",
"Data visualization"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization"
]
packages = [
{ include = "gecos", from = "src" },
]
[tool.poetry.scripts]
gecos = "gecos.cli:main"
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.13"
biotite = ">= 0.21"
scikit-image = ">= 0.17"
matplotlib = "^3.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
sphinx = "^3.0"
numpydoc = ">= 0.8"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"