-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpyproject.toml
49 lines (42 loc) · 996 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
43
44
45
46
47
48
49
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "primalscheme"
author = "Josh Quick"
author-email = "[email protected]"
maintainer = "Andrew Smith"
maintainer-email = "[email protected]"
home-page = "https://github.com/aresti/primalscheme"
requires = [
"biopython>=1,<2",
"click==8.1.3",
"parasail==1.2",
"primer3-py>=0,<1",
"progress==1.5",
"reportlab>=3,<4",
]
requires-python = ">=3.7,<4"
description-file = "README.md"
classifiers = [
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[tool.flit.scripts]
primalscheme = "primalscheme.cli:cli"
[tool.flit.metadata.requires-extra]
dev = ["pre-commit"]
test = [
"pytest >=2.7.3",
"pytest-cov",
]
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py36, py37, py38
[testenv]
deps = pytest >= 3.0.0, <4
commands = pytest
"""