forked from connor-lab/vapor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "vaporup"
authors = [
{name = "Joel Southgate"},
]
maintainers = [
{name = "Wolfgang Maier", email = "maierw@informatik.uni-freiburg.de"},
]
description = "Vapor is a tool for classification of Influenza samples from short read sequence data, which can be applied also to other viruses."
readme = "pkg_long_description.md"
requires-python = ">=3.8"
keywords = ["virology"]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
classifiers = [
"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 = [
"numpy>=1.15.1"
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/wm75/vaporup"
[tool.setuptools.dynamic]
version = {attr = "pyvapor.__version__"}
[tool.setuptools]
script-files = ["vapor.py"]