-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 961 Bytes
/
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
[tool.poetry]
name = "fuzzy-onions"
version = "0.1.0"
description = "FlyBase scRNAseq scripts"
license = "MIT"
authors = ["Damien Goutte-Gattat <[email protected]>"]
readme = "README.md"
repository = "https://github.com/FlyBase/fuzzy-onions"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
packages = [{include = "fbcam", from = "src"}]
include = [{ path = "docs", format = "sdist" }]
[tool.poetry.dependencies]
python = "^3.9"
click-shell = ">=2.1"
pandas = "*"
ipython = "*"
pyyaml = "*"
psycopg2 = "*"
pronto = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
sphinx-rtd-theme = "*"
[tool.poetry.scripts]
fzo = "fbcam.fuzzyonions.main:main"
[tool.black]
skip-string-normalization = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"