forked from lrauschning/gtfparse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (24 loc) · 940 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
[project]
name = "gtfparse"
requires-python = ">=3.7"
authors = [ {name="Alex Rubinsteyn", email="[email protected]" } ]
description = "Parsing library for extracting data frames of genomic features from GTF files"
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
readme = "README.md"
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
version = {attr = "gtfparse.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools]
packages = ["gtfparse"]
[project.urls]
"Homepage" = "https://github.com/openvax/gtfparse"
"Bug Tracker" = "https://github.com/openvax/gtfparse"