-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (31 loc) · 992 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
[project]
name = "profasta"
description = "A Python library for working with protein containing FASTA files."
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [
{ name = "David M. Hollenstein", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = ["fasta", "bioinformatics", "mass spectrometry", "proteomics"]
requires-python = ">=3.9"
dynamic = ["version"]
[project.optional-dependencies]
tests = ["pytest"]
dev = ["nox", "pytest"]
[project.urls]
repository = "https://github.com/hollenstein/profasta"
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["profasta"]
[tool.setuptools.dynamic]
version = { attr = "profasta.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]