-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
36 lines (31 loc) · 1.05 KB
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "GetAlleles"
authors = [
{name="Tom Stanton", email="[email protected]" },
]
description = "Extract alleles from an assembly"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
keywords = ["bioinformatics", "typing"]
license = {file = "LICENSE"}
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
[project.scripts]
getalleles = "getalleles.__main__:main"
[tool.setuptools.packages.find]
include = ["getalleles"]
[tool.setuptools.dynamic]
version = {attr = "getalleles.version.__version__"}