annotate pyproject.toml @ 2:d0350fe29fdf draft

planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
author cstrittmatter
date Mon, 27 Apr 2020 01:11:53 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
1 [tool.poetry]
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
2 name = "salmid"
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
3 version = "0.1.23"
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
4 description = "Rapid tool to check taxonomic ID of single isolate samples. Currently only IDs Salmonella species and subspecies, and some common contaminants (Listeria, Escherichia)."
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
5 authors = ["Henk den Bakker <hcd82599@uga.edu>"]
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
6 license = "MIT"
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
7 include = [ 'salmid/invA_mers_dict', 'salmid/rpoB_mers_dict' ]
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
8
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
9 [tool.poetry.dependencies]
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
10 python = "^3.5"
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
11
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
12 [tool.poetry.dev-dependencies]
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
13
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
14 [tool.poetry.scripts]
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
15 'SalmID.py' = 'salmid.core:main'
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
16
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
17 [build-system]
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
18 requires = ["poetry>=0.12"]
d0350fe29fdf planemo upload commit c50df40caef2fb97c178d6890961e0e527992324
cstrittmatter
parents:
diff changeset
19 build-backend = "poetry.masonry.api"