-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
31 lines (28 loc) · 1009 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fastapy"
description = "A lightweight Python module to read and write FASTA sequence records"
authors = [
{name = "Andrzej Zielezinski", email = "[email protected]"},
{name = "Maciej Michalczyk", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = ["FASTA", "sequence", "record", "parser"]
requires-python = ">=3.8"
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "fastapy.__version__"}
[project.urls]
Documentation = "https://github.com/aziele/fastapy"
Source = "https://github.com/aziele/fastapy"