-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.05 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
45
[build-system]
requires = ["setuptools >= 63", "setuptools_scm[toml] >= 6.2", "Cython >= 0.29.20"]
build-backend = "setuptools.build_meta"
[project]
name = "salty"
authors = [
{name = "Liam Cheney", email = "liam.cheney1@gmail.com"}
]
description = "In silico lineage typing of Staphylococcus aureus."
readme = "README.md"
license = {text = "GPLv3"}
classifiers = [
'License :: OSI Approved :: GPLv3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Intended Audience :: Science/Research'
]
requires-python = ">=3.7"
dynamic = ["version"]
dependencies = [
"pandas >= 1.5.0"
]
[project.urls]
"Homepage" = "https://github.com/LanLab/salty"
[project.scripts]
salty = "salty.salty:main"
[tool.pytest.ini_options]
filterwarnings = [
"error",
]
testpaths = ["tests"]
xfail_strict = true
[tool.mypy]
warn_unused_configs = true
[tool.cibuildwheel]
environment = "CFLAGS=-g0"
test-extras = ["dev"]
test-command = ["pytest {project}"]