forked from mdshw5/pyfaidx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.26 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
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfaidx"
authors = [
{ name="Matthew Shirley", email="mdshw5@gmail.com"}
]
description = "pyfaidx: efficient pythonic random access to fasta subsequences"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"setuptools",
"importlib_metadata"
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/mdshw5/pyfaidx/"
"Author homepage" = "http://mattshirley.com"
[project.scripts]
faidx = "pyfaidx.cli:main"
[tool.setuptools_scm]
local_scheme = "no-local-version"