-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "viramp_hub"
authors = [
{name = "Wolfgang Maier", email = "maierw@informatik.uni-freiburg.de"},
]
description = "VirAmp-Hub lets you manipulate/convert viral amplicon/primer scheme information."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["virology", "tiled-amplicon", "primer schemes"]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
"Natural Language :: English",
]
dependencies = []
dynamic = ["version"]
[project.scripts]
scheme-convert = "viramp_hub.command:main"
[project.urls]
"Homepage" = "https://github.com/wm75/viramp-hub"
[tool.setuptools.dynamic]
version = {attr = "viramp_hub.__version__"}