-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
37 lines (35 loc) · 932 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
[build-system]
requires = [
"setuptools >= 64",
"wheel >= 0.37.1",
]
build-backend = "setuptools.build_meta"
[project]
name = "primaschema"
description = "Generate PHA4GE-compatible primer scheme descriptions"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["genomics", "epidemiology"]
license = {text = "MIT License"}
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3.10",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
dependencies = [
"biopython == 1.79",
"defopt == 6.4.0",
"pandas == 1.4.3",
"pre-commit",
"pytest"
]
dynamic = ["version"]
[project.scripts]
primaschema = "primaschema.cli:main"
[tool.setuptools.dynamic]
version = {attr = "primaschema.__version__"}